Skip to content

Commit

Permalink
Bump version to 0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AugsEU committed Jan 18, 2025
1 parent 3d5401a commit aaf0fa7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGE_LOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@

* Fix memory leak with allocating strings. We store them in a dictionary and only allocate them the first time the scope is created.
* Use "on demand" model, meaning we don't store profiling info locally until the profiler is connected.
* Get rid of attributes in TracyWrapperStubs so we don't accidentally leak function names into release builds.
* Get rid of attributes in TracyWrapperStubs so we don't accidentally leak function names into release builds.

### 0.20.2

* Fix usage of allocations of CStrings to avoid a crash in the tracy profiler.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Get on nuget: https://www.nuget.org/packages/TracyWrapper
Or run in the package manager:

```
NuGet\Install-Package TracyWrapper -Version 0.20.1
NuGet\Install-Package TracyWrapper -Version 0.20.2
```

#### Or from source
Expand Down Expand Up @@ -103,7 +103,7 @@ Get on nuget: https://www.nuget.org/packages/TracyWrapperStubs
Or run in the package manager:

```
NuGet\Install-Package TracyWrapperStubs -Version 0.20.1
NuGet\Install-Package TracyWrapperStubs -Version 0.20.2
```

## Profiling accuracy
Expand Down
2 changes: 1 addition & 1 deletion TracyWrapper/TracyWrapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<VersionPrefix>0.20.1</VersionPrefix>
<VersionPrefix>0.20.2</VersionPrefix>
<Version>$(VersionPrefix)</Version>
<Title>TracyWrapper</Title>
<Description>A C# wrapper to easily interop with Tracy Profiler </Description>
Expand Down
2 changes: 1 addition & 1 deletion TracyWrapperStubs/STUBS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ Get on nuget: https://www.nuget.org/packages/TracyWrapperStubs
Or run in the package manager:

```
NuGet\Install-Package TracyWrapperStubs -Version 0.20.1
NuGet\Install-Package TracyWrapperStubs -Version 0.20.2
```
2 changes: 1 addition & 1 deletion TracyWrapperStubs/TracyWrapperStubs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>TracyWrapperStubs</Title>
<VersionPrefix>0.20.1</VersionPrefix>
<VersionPrefix>0.20.2</VersionPrefix>
<Version>$(VersionPrefix)</Version>
<Description>A version of the TracyWrapper API with no implementation.</Description>
<PackageProjectUrl>https://github.com/AugsEU/TracyWrapper</PackageProjectUrl>
Expand Down

0 comments on commit aaf0fa7

Please sign in to comment.