Skip to content

Commit 37aff70

Browse files
committed
Release 0.10.0.
1 parent 93537df commit 37aff70

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

NEWS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ 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.x.x (xxxx-xx-xx)
6-
-------------------
5+
v0.10.0 (2023-10-16)
6+
--------------------
77

88
- Missed frames region of on-demand captures will be now ignored when
99
calculating trace time span, zone percentages, etc.
@@ -45,7 +45,7 @@ v0.x.x (xxxx-xx-xx)
4545
- Improved compatibility with MSVC projects not defining NOMINMAX.
4646
- Improved compatibility with Linux setups targeting musl as libc.
4747
- Thread safety of Vulkan instrumentation has been reviewed.
48-
- D3D12 instrumentation was rewritten.
48+
- D3D11 and D3D12 instrumentation was rewritten.
4949
- Added support for efficient profiling when running under rr, the record-
5050
replaying debugger. This is enabled with TRACY_PATCHABLE_NOPSLEDS define.
5151
- History of viewed symbols is now preserved and you can go back to

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.9.1')
1+
project('tracy', ['cpp'], version: '0.10.0')
22

33
if get_option('tracy_enable')
44
add_project_arguments('-DTRACY_ENABLE', language : 'cpp')

public/common/TracyVersion.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ namespace tracy
66
namespace Version
77
{
88
enum { Major = 0 };
9-
enum { Minor = 9 };
10-
enum { Patch = 2 };
9+
enum { Minor = 10 };
10+
enum { Patch = 0 };
1111
}
1212
}
1313

server/TracyProtoHistory.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ namespace tracy
55
{
66

77
constexpr ProtocolHistory_t ProtocolHistoryArr[] = {
8+
{ 64, FileVersion( 0, 10, 0 ) },
89
{ 63, FileVersion( 0, 9, 0 ), FileVersion( 0, 9, 1 ) },
910
{ 57, FileVersion( 0, 8, 2 ) },
1011
{ 56, FileVersion( 0, 8, 1 ) },

0 commit comments

Comments
 (0)