Skip to content

Commit 78248ca

Browse files
committed
bumped version to 3.9.0 and updated changelog
1 parent 43442d0 commit 78248ca

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77

8-
## [3.9.0] - 2021-04-??
8+
## [3.9.0] - 2021-04-11
99
### Added
1010
- Added ability to search for a specific type in any list that provides a search-field. Use ```t:type``` just like in Unity's search-fields too.
1111
If you want to search for ```RenderTexture``` types, enter ```t:RenderTexture``` in the search-field.
1212
Thanks to jojo59516 for the implementation. See [PR#7](https://github.com/pschraut/UnityHeapExplorer/pull/7) for details.
1313
### Fixed
1414
- Fixed UnityEngine.RectTransform handled as UnityEngine.Transform. Thanks to jojo59516 for the fix. See [PR#6](https://github.com/pschraut/UnityHeapExplorer/pull/6) for details.
15+
- Fixed sorting by size in native objects list is incorrect when searching by string. Thanks to patrickdevarney for the bug-report. See [Issue #4](https://github.com/pschraut/UnityHeapExplorer/issues/4) for details.
16+
- Fixed sorting by name in native objects list resulting in semi-random order.
1517

16-
1718
## [3.8.0] - 2021-04-07
1819
### Fixed
1920
- Fixed object connections lost when loading a snapshot from file. Please see [Issue #5](https://github.com/pschraut/UnityHeapExplorer/issues/5) for details. Thanks to jojo59516 for the report.

Editor/Scripts/HeGlobals.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace HeapExplorer
1111
public static class HeGlobals
1212
{
1313
public const string k_Title = "Heap Explorer";
14-
public const string k_Version = "3.8";
14+
public const string k_Version = "3.9";
1515
public const string k_DocuUrl = "https://github.com/pschraut/UnityHeapExplorer";
1616
public const string k_ChangelogUrl = "https://github.com/pschraut/UnityHeapExplorer/blob/master/CHANGELOG.md";
1717
public const string k_ForumUrl = "https://forum.unity.com/threads/wip-heap-explorer-memory-profiler-debugger-and-analyzer-for-unity.527949/";

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ In Unity's Package Manager, choose "Add package from git URL" and insert one of
2828

2929
| Version | Link |
3030
|----------|---------------|
31+
| 3.9.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.9.0 |
3132
| 3.8.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.8.0 |
3233
| 3.7.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.7.0 |
3334
| 3.6.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.6.0 |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.oddworm.heapexplorer",
3-
"version": "3.8.0",
3+
"version": "3.9.0",
44
"displayName": "Heap Explorer",
55
"description": "Heap Explorer is a Memory Profiler, Debugger and Analyzer for Unity. You can open it from the main menu 'Window > Analysis > Heap Explorer'.",
66
"documentationUrl": "https://github.com/pschraut/UnityHeapExplorer",

0 commit comments

Comments
 (0)