Skip to content

Commit 650c98e

Browse files
committed
Relase 0.12.1.
1 parent 310c938 commit 650c98e

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

NEWS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@ 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.12.1 (2025-06-07)
6+
--------------------
7+
8+
- Fixed window size calculation on macOS, most notably enabling the vertical
9+
timeline scroll bar.
10+
- Made debug builds of the GUI profiler work with broken Apple compiler.
11+
- Fixed profiler compilation when build directory is outside the source
12+
directory.
13+
- Set proper include path when using CMake integration.
14+
- Added the Tracy Metal and CUDA headers to CMake install configuration.
15+
- Documented flame graphs.
16+
17+
518
v0.12.0 (2025-05-30)
619
--------------------
720

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.12.0', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
1+
project('tracy', ['cpp'], version: '0.12.1', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
22

33
# internal compiler flags
44
tracy_compile_args = []

profiler/src/profiler/TracyProtoHistory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace tracy
55
{
66

77
constexpr ProtocolHistory_t ProtocolHistoryArr[] = {
8-
{ 74, FileVersion( 0, 12, 0 ) },
8+
{ 74, FileVersion( 0, 12, 0 ), FileVersion( 0, 12, 1 ) },
99
{ 69, FileVersion( 0, 11, 1 ) },
1010
{ 66, FileVersion( 0, 11, 0 ) },
1111
{ 64, FileVersion( 0, 10, 0 ) },

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 = 12 };
10-
enum { Patch = 0 };
10+
enum { Patch = 1 };
1111
}
1212
}
1313

0 commit comments

Comments
 (0)