From 075395620a504c0cdcaf9bab3d196db16a043de7 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 16 Jul 2024 18:38:15 +0200 Subject: [PATCH] Release 0.11.0. --- NEWS | 2 +- meson.build | 2 +- public/common/TracyVersion.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 12069dce..f7ba5dfd 100644 --- a/NEWS +++ b/NEWS @@ -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 here. -vx.xx.x (xxxx-xx-xx) +v0.11.0 (2024-07-16) -------------------- - Support for pre-0.9 traces has been dropped. diff --git a/meson.build b/meson.build index b8112c05..a0b1bd5d 100644 --- a/meson.build +++ b/meson.build @@ -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 tracy_compile_args = [] diff --git a/public/common/TracyVersion.hpp b/public/common/TracyVersion.hpp index 2355279f..aa4f9336 100644 --- a/public/common/TracyVersion.hpp +++ b/public/common/TracyVersion.hpp @@ -6,7 +6,7 @@ namespace tracy namespace Version { enum { Major = 0 }; -enum { Minor = 10 }; +enum { Minor = 11 }; enum { Patch = 0 }; } }