From 650c98ece70da9e155e7ba1c2b3ee16004aae118 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 7 Jun 2025 16:59:25 +0200 Subject: [PATCH] Relase 0.12.1. --- NEWS | 13 +++++++++++++ meson.build | 2 +- profiler/src/profiler/TracyProtoHistory.cpp | 2 +- public/common/TracyVersion.hpp | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 4099c49d..54e420ac 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,19 @@ 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.12.1 (2025-06-07) +-------------------- + +- Fixed window size calculation on macOS, most notably enabling the vertical + timeline scroll bar. +- Made debug builds of the GUI profiler work with broken Apple compiler. +- Fixed profiler compilation when build directory is outside the source + directory. +- Set proper include path when using CMake integration. +- Added the Tracy Metal and CUDA headers to CMake install configuration. +- Documented flame graphs. + + v0.12.0 (2025-05-30) -------------------- diff --git a/meson.build b/meson.build index 6872cb59..83ae1e0e 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('tracy', ['cpp'], version: '0.12.0', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11']) +project('tracy', ['cpp'], version: '0.12.1', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11']) # internal compiler flags tracy_compile_args = [] diff --git a/profiler/src/profiler/TracyProtoHistory.cpp b/profiler/src/profiler/TracyProtoHistory.cpp index 08bb5023..a38623cd 100644 --- a/profiler/src/profiler/TracyProtoHistory.cpp +++ b/profiler/src/profiler/TracyProtoHistory.cpp @@ -5,7 +5,7 @@ namespace tracy { constexpr ProtocolHistory_t ProtocolHistoryArr[] = { - { 74, FileVersion( 0, 12, 0 ) }, + { 74, FileVersion( 0, 12, 0 ), FileVersion( 0, 12, 1 ) }, { 69, FileVersion( 0, 11, 1 ) }, { 66, FileVersion( 0, 11, 0 ) }, { 64, FileVersion( 0, 10, 0 ) }, diff --git a/public/common/TracyVersion.hpp b/public/common/TracyVersion.hpp index f1e3c0b2..5894de5b 100644 --- a/public/common/TracyVersion.hpp +++ b/public/common/TracyVersion.hpp @@ -7,7 +7,7 @@ namespace Version { enum { Major = 0 }; enum { Minor = 12 }; -enum { Patch = 0 }; +enum { Patch = 1 }; } }