diff --git a/NEWS b/NEWS index fcbeeded..79df5331 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,24 @@ Note: There is no guarantee that version mismatched client and server will be able to talk with each other. Network protocol breakages won't be listed here. +v0.13.1 (2025-12-11) +-------------------- + +- Fixed parsing of extended model and family of x86 CPUID. +- Fixed memory corruption when a "long" user name was used on Android. +- Fixed wrong function signature when TRACY_DEBUGINFOD was enabled. +- Mount list is now read using proper API instead of processing /proc/mounts. +- Fixed shadow warning supression not being enabled on gcc. +- Silently ignore lost ETW Vsync events instead of asserting. +- Worked around few cases where old macOS machines do not support C++20 + properly. Thanks Tim Apple! +- Added truncated mean parameter to csvexport. +- Added experimental viewer for the user manual. +- Memory free faults can be now ignored with the TRACY_IGNORE_MEMORY_FAULTS + option. +- Fixed race condition during profiler shutdown. + + v0.13.0 (2025-11-11) -------------------- diff --git a/meson.build b/meson.build index 96fbb9e1..16031448 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('tracy', ['cpp'], version: '0.13.0', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11']) +project('tracy', ['cpp'], version: '0.13.1', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11']) # internal compiler flags tracy_compile_args = [] diff --git a/public/common/TracyVersion.hpp b/public/common/TracyVersion.hpp index 1b6fc48c..6dde8cf8 100644 --- a/public/common/TracyVersion.hpp +++ b/public/common/TracyVersion.hpp @@ -7,7 +7,7 @@ namespace Version { enum { Major = 0 }; enum { Minor = 13 }; -enum { Patch = 0 }; +enum { Patch = 1 }; } } diff --git a/python/pyproject.toml b/python/pyproject.toml index 67b458ae..8620653e 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "tracy_client" -version = "0.13.0" +version = "0.13.1" description = "A real time, nanosecond resolution, remote telemetry, hybrid frame and sampling profiler for games and other applications." authors = [ { name = "Bartosz Taudul", email = "wolf@nereid.pl" },