Skip to content

Commit c556831

Browse files
committed
Release 0.12.2.
1 parent 8a8e16a commit c556831

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ 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.2 (2025-06-25)
6+
--------------------
7+
8+
- Fixed builds made out of git checkout directory.
9+
- Added range limits for flame graph.
10+
- Fixed wayland include paths for distros that use non-standard package
11+
layouts.
12+
- Workarounded MinGW build problems. Safe symbol retrieval is not available
13+
on this platform.
14+
- Fixed Lua bindings when TRACY_NO_CALLSTACK is defined.
15+
16+
517
v0.12.1 (2025-06-07)
618
--------------------
719

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.1', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
1+
project('tracy', ['cpp'], version: '0.12.2', 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 ), FileVersion( 0, 12, 1 ) },
8+
{ 74, FileVersion( 0, 12, 0 ), FileVersion( 0, 12, 2 ) },
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 = 1 };
10+
enum { Patch = 2 };
1111
}
1212
}
1313

0 commit comments

Comments
 (0)