Skip to content

Commit 87924ac

Browse files
committed
Release 0.12.0.
1 parent 902d32f commit 87924ac

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ 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-
vx.xx.x (xxxx-xx-xx)
5+
v0.12.0 (2025-05-30)
66
--------------------
77

88
- Enabled workaround for MSVC runtime library SNAFU, which manifested with

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.11.1', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
1+
project('tracy', ['cpp'], version: '0.12.0', 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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ namespace tracy
55
{
66

77
constexpr ProtocolHistory_t ProtocolHistoryArr[] = {
8+
{ 74, FileVersion( 0, 12, 0 ) },
89
{ 69, FileVersion( 0, 11, 1 ) },
910
{ 66, FileVersion( 0, 11, 0 ) },
1011
{ 64, FileVersion( 0, 10, 0 ) },

public/common/TracyVersion.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ namespace tracy
66
namespace Version
77
{
88
enum { Major = 0 };
9-
enum { Minor = 11 };
10-
enum { Patch = 3 };
9+
enum { Minor = 12 };
10+
enum { Patch = 0 };
1111
}
1212
}
1313

0 commit comments

Comments
 (0)