Skip to content

Commit

Permalink
Release 0.10.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfpld committed Oct 16, 2023
1 parent 93537df commit 37aff70
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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')
Expand Down
4 changes: 2 additions & 2 deletions public/common/TracyVersion.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ namespace tracy
namespace Version
{
enum { Major = 0 };
enum { Minor = 9 };
enum { Patch = 2 };
enum { Minor = 10 };
enum { Patch = 0 };
}
}

Expand Down
1 change: 1 addition & 0 deletions server/TracyProtoHistory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) },
Expand Down

0 comments on commit 37aff70

Please sign in to comment.