Skip to content

Commit be172be

Browse files
committed
bumped version to 4.1
1 parent 7bfbc91 commit be172be

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ 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.1.0] - 2022-??-?? (not released yet)
7+
## [4.1.0] - 2022-06-28
88
### Added
9+
- Added ```#C Empty Shell Objects``` view. It's basically a native Unity object that was destroyed, where its managed object representation is still hanging around, which seems to indicate some sort of memory leak. See [this forum post](https://forum.unity.com/threads/heap-explorer-memory-profiler-debugger-and-analyzer-for-unity.527949/page-5#post-5896832) for more details.
910
- Added visualizer for ```System.DateTime``` to the C# managed object inspector.
1011

1112
## [4.0.0] - 2021-05-23

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 = "4.0";
14+
public const string k_Version = "4.1";
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/";

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019-2021 Peter Schraut (http://www.console-dev.de)
3+
Copyright (c) 2019-2022 Peter Schraut (http://www.console-dev.de)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Please see the ```CHANGELOG.md``` file to see what's changed in each version.
3232

3333
| Version | Link |
3434
|----------|---------------|
35+
| 4.1.0 | https://github.com/pschraut/UnityHeapExplorer.git#4.1.0 |
3536
| 4.0.0 | https://github.com/pschraut/UnityHeapExplorer.git#4.0.0 |
3637
| 3.9.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.9.0 |
3738
| 3.8.0 | https://github.com/pschraut/UnityHeapExplorer.git#3.8.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": "4.0.0",
3+
"version": "4.1.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)