diff --git a/NEWS b/NEWS index 05b68d912e..1749387560 100644 --- a/NEWS +++ b/NEWS @@ -2,8 +2,8 @@ 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.x.x (xxxx-xx-xx) -------------------- +v0.10.0 (2023-10-16) +-------------------- - Missed frames region of on-demand captures will be now ignored when calculating trace time span, zone percentages, etc. @@ -45,7 +45,7 @@ v0.x.x (xxxx-xx-xx) - Improved compatibility with MSVC projects not defining NOMINMAX. - Improved compatibility with Linux setups targeting musl as libc. - Thread safety of Vulkan instrumentation has been reviewed. -- D3D12 instrumentation was rewritten. +- D3D11 and D3D12 instrumentation was rewritten. - Added support for efficient profiling when running under rr, the record- replaying debugger. This is enabled with TRACY_PATCHABLE_NOPSLEDS define. - History of viewed symbols is now preserved and you can go back to diff --git a/meson.build b/meson.build index 2c32aee034..7756490e86 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('tracy', ['cpp'], version: '0.9.1') +project('tracy', ['cpp'], version: '0.10.0') if get_option('tracy_enable') add_project_arguments('-DTRACY_ENABLE', language : 'cpp') diff --git a/public/common/TracyVersion.hpp b/public/common/TracyVersion.hpp index 54b2142205..2355279f72 100644 --- a/public/common/TracyVersion.hpp +++ b/public/common/TracyVersion.hpp @@ -6,8 +6,8 @@ namespace tracy namespace Version { enum { Major = 0 }; -enum { Minor = 9 }; -enum { Patch = 2 }; +enum { Minor = 10 }; +enum { Patch = 0 }; } } diff --git a/server/TracyProtoHistory.cpp b/server/TracyProtoHistory.cpp index 8cb20d3a88..9f90c4c697 100644 --- a/server/TracyProtoHistory.cpp +++ b/server/TracyProtoHistory.cpp @@ -5,6 +5,7 @@ namespace tracy { constexpr ProtocolHistory_t ProtocolHistoryArr[] = { + { 64, FileVersion( 0, 10, 0 ) }, { 63, FileVersion( 0, 9, 0 ), FileVersion( 0, 9, 1 ) }, { 57, FileVersion( 0, 8, 2 ) }, { 56, FileVersion( 0, 8, 1 ) },