Skip to content

Commit b00fee6

Browse files
committed
bumped version to 4.0
1 parent fdb111d commit b00fee6

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this package are documented in this file.
44
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

7-
## [4.0.0] - 2021-??-??
7+
## [4.0.0] - 2021-05-23
88
### Fixed
99
- Fixed search regression introduced in 3.9.0. Thanks to jojo59516 for the fix. See [PR#10](https://github.com/pschraut/UnityHeapExplorer/pull/10) for details.
1010
- Fixed "ArgumentException: Getting control 2's position in a group with only 2 controls when doing repaint" error that occurred very often when loading a memory snapshot.

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.9";
14+
public const string k_Version = "4.0";
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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,13 @@ In Unity's Package Manager, choose "Add package from git URL" and insert one of
2626

2727
## Package URL's
2828

29+
I recommend to right-click the URL below and choose "Copy Link" rather than selecting the text and copying it, because sometimes it copies a space at the end and the Unity Package Manager can't handle it and spits out an error when you try to add the package.
30+
31+
Please see the ```CHANGELOG.md``` file to see what's changed in each version.
32+
2933
| Version | Link |
3034
|----------|---------------|
35+
| 4.0.0 | https://github.com/pschraut/UnityHeapExplorer.git#4.0.0 |
3136
| 3.9.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.9.0 |
3237
| 3.8.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.8.0 |
3338
| 3.7.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.7.0 |
@@ -37,7 +42,6 @@ In Unity's Package Manager, choose "Add package from git URL" and insert one of
3742
| 3.3.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.3.0 |
3843
| 3.2.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.2.0 |
3944

40-
4145
# Credits
4246

4347
If you find this package useful, please mention my name in your credits screen.

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.9.0",
3+
"version": "4.0.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)