2
0
mirror of https://github.com/wolfpld/tracy synced 2026-01-19 04:52:09 +00:00

Relase 0.12.1.

This commit is contained in:
Bartosz Taudul
2025-06-07 16:59:25 +02:00
parent 310c9389b2
commit 650c98ece7
4 changed files with 16 additions and 3 deletions

13
NEWS
View File

@@ -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)
--------------------

View File

@@ -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 = []

View File

@@ -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 ) },

View File

@@ -7,7 +7,7 @@ namespace Version
{
enum { Major = 0 };
enum { Minor = 12 };
enum { Patch = 0 };
enum { Patch = 1 };
}
}