mirror of
https://github.com/wolfpld/tracy.git
synced 2026-06-08 00:23:47 +00:00
Release 0.12.2.
This commit is contained in:
12
NEWS
12
NEWS
@@ -2,6 +2,18 @@ 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.2 (2025-06-25)
|
||||
--------------------
|
||||
|
||||
- Fixed builds made out of git checkout directory.
|
||||
- Added range limits for flame graph.
|
||||
- Fixed wayland include paths for distros that use non-standard package
|
||||
layouts.
|
||||
- Workarounded MinGW build problems. Safe symbol retrieval is not available
|
||||
on this platform.
|
||||
- Fixed Lua bindings when TRACY_NO_CALLSTACK is defined.
|
||||
|
||||
|
||||
v0.12.1 (2025-06-07)
|
||||
--------------------
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
project('tracy', ['cpp'], version: '0.12.1', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
|
||||
project('tracy', ['cpp'], version: '0.12.2', meson_version: '>=1.3.0', default_options : ['cpp_std=c++11'])
|
||||
|
||||
# internal compiler flags
|
||||
tracy_compile_args = []
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace tracy
|
||||
{
|
||||
|
||||
constexpr ProtocolHistory_t ProtocolHistoryArr[] = {
|
||||
{ 74, FileVersion( 0, 12, 0 ), FileVersion( 0, 12, 1 ) },
|
||||
{ 74, FileVersion( 0, 12, 0 ), FileVersion( 0, 12, 2 ) },
|
||||
{ 69, FileVersion( 0, 11, 1 ) },
|
||||
{ 66, FileVersion( 0, 11, 0 ) },
|
||||
{ 64, FileVersion( 0, 10, 0 ) },
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace Version
|
||||
{
|
||||
enum { Major = 0 };
|
||||
enum { Minor = 12 };
|
||||
enum { Patch = 1 };
|
||||
enum { Patch = 2 };
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user