1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

Release 0.10.0.

This commit is contained in:
Bartosz Taudul 2023-10-16 20:57:02 +02:00
parent 93537dff33
commit 37aff70dfa
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
4 changed files with 7 additions and 6 deletions

6
NEWS
View File

@ -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 be able to talk with each other. Network protocol breakages won't be listed
here. 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 - Missed frames region of on-demand captures will be now ignored when
calculating trace time span, zone percentages, etc. 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 MSVC projects not defining NOMINMAX.
- Improved compatibility with Linux setups targeting musl as libc. - Improved compatibility with Linux setups targeting musl as libc.
- Thread safety of Vulkan instrumentation has been reviewed. - 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- - Added support for efficient profiling when running under rr, the record-
replaying debugger. This is enabled with TRACY_PATCHABLE_NOPSLEDS define. replaying debugger. This is enabled with TRACY_PATCHABLE_NOPSLEDS define.
- History of viewed symbols is now preserved and you can go back to - History of viewed symbols is now preserved and you can go back to

View File

@ -1,4 +1,4 @@
project('tracy', ['cpp'], version: '0.9.1') project('tracy', ['cpp'], version: '0.10.0')
if get_option('tracy_enable') if get_option('tracy_enable')
add_project_arguments('-DTRACY_ENABLE', language : 'cpp') add_project_arguments('-DTRACY_ENABLE', language : 'cpp')

View File

@ -6,8 +6,8 @@ namespace tracy
namespace Version namespace Version
{ {
enum { Major = 0 }; enum { Major = 0 };
enum { Minor = 9 }; enum { Minor = 10 };
enum { Patch = 2 }; enum { Patch = 0 };
} }
} }

View File

@ -5,6 +5,7 @@ namespace tracy
{ {
constexpr ProtocolHistory_t ProtocolHistoryArr[] = { constexpr ProtocolHistory_t ProtocolHistoryArr[] = {
{ 64, FileVersion( 0, 10, 0 ) },
{ 63, FileVersion( 0, 9, 0 ), FileVersion( 0, 9, 1 ) }, { 63, FileVersion( 0, 9, 0 ), FileVersion( 0, 9, 1 ) },
{ 57, FileVersion( 0, 8, 2 ) }, { 57, FileVersion( 0, 8, 2 ) },
{ 56, FileVersion( 0, 8, 1 ) }, { 56, FileVersion( 0, 8, 1 ) },