Release 0.11.0.

This commit is contained in:
Bartosz Taudul 2024-07-16 18:38:15 +02:00
parent 521e371c60
commit 075395620a
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
3 changed files with 3 additions and 3 deletions

2
NEWS
View File

@ -2,7 +2,7 @@ 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.
vx.xx.x (xxxx-xx-xx) v0.11.0 (2024-07-16)
-------------------- --------------------
- Support for pre-0.9 traces has been dropped. - Support for pre-0.9 traces has been dropped.

View File

@ -1,4 +1,4 @@
project('tracy', ['cpp'], version: '0.10.0', meson_version: '>=1.1.0') project('tracy', ['cpp'], version: '0.11.0', meson_version: '>=1.1.0')
# internal compiler flags # internal compiler flags
tracy_compile_args = [] tracy_compile_args = []

View File

@ -6,7 +6,7 @@ namespace tracy
namespace Version namespace Version
{ {
enum { Major = 0 }; enum { Major = 0 };
enum { Minor = 10 }; enum { Minor = 11 };
enum { Patch = 0 }; enum { Patch = 0 };
} }
} }