Skip to content

Commit 05cceee

Browse files
committed
Release 0.13.1.
1 parent 16bac5f commit 05cceee

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

NEWS

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@ Note: There is no guarantee that version mismatched client and server will
22
be able to talk with each other. Network protocol breakages won't be listed
33
here.
44

5+
v0.13.1 (2025-12-11)
6+
--------------------
7+
8+
- Fixed parsing of extended model and family of x86 CPUID.
9+
- Fixed memory corruption when a "long" user name was used on Android.
10+
- Fixed wrong function signature when TRACY_DEBUGINFOD was enabled.
11+
- Mount list is now read using proper API instead of processing /proc/mounts.
12+
- Fixed shadow warning supression not being enabled on gcc.
13+
- Silently ignore lost ETW Vsync events instead of asserting.
14+
- Worked around few cases where old macOS machines do not support C++20
15+
properly. Thanks Tim Apple!
16+
- Added truncated mean parameter to csvexport.
17+
- Added experimental viewer for the user manual.
18+
- Memory free faults can be now ignored with the TRACY_IGNORE_MEMORY_FAULTS
19+
option.
20+
- Fixed race condition during profiler shutdown.
21+
22+
523
v0.13.0 (2025-11-11)
624
--------------------
725

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('tracy', ['cpp'], version: '0.13.0', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
1+
project('tracy', ['cpp'], version: '0.13.1', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
22

33
# internal compiler flags
44
tracy_compile_args = []

public/common/TracyVersion.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Version
77
{
88
enum { Major = 0 };
99
enum { Minor = 13 };
10-
enum { Patch = 0 };
10+
enum { Patch = 1 };
1111
}
1212
}
1313

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "tracy_client"
7-
version = "0.13.0"
7+
version = "0.13.1"
88
description = "A real time, nanosecond resolution, remote telemetry, hybrid frame and sampling profiler for games and other applications."
99
authors = [
1010
{ name = "Bartosz Taudul", email = "[email protected]" },

0 commit comments

Comments
 (0)