From 897aec5b062664d2485f4f9a213715d2e527e0ca Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 26 Feb 2023 15:30:03 +0100 Subject: [PATCH] Release 0.9.1. --- NEWS | 2 +- public/common/TracyVersion.hpp | 2 +- server/TracyProtoHistory.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 850b95d02e..251e3e3b64 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. -v0.x.x (xxxx-xx-xx) +v0.9.1 (2023-02-26) ------------------- - Support for pre-0.8 traces has been dropped. diff --git a/public/common/TracyVersion.hpp b/public/common/TracyVersion.hpp index 983d1c51f0..c82edf93d2 100644 --- a/public/common/TracyVersion.hpp +++ b/public/common/TracyVersion.hpp @@ -7,7 +7,7 @@ namespace Version { enum { Major = 0 }; enum { Minor = 9 }; -enum { Patch = 0 }; +enum { Patch = 1 }; } } diff --git a/server/TracyProtoHistory.cpp b/server/TracyProtoHistory.cpp index 15aa11e20a..8cb20d3a88 100644 --- a/server/TracyProtoHistory.cpp +++ b/server/TracyProtoHistory.cpp @@ -5,7 +5,7 @@ namespace tracy { constexpr ProtocolHistory_t ProtocolHistoryArr[] = { - { 63, FileVersion( 0, 9, 0 ) }, + { 63, FileVersion( 0, 9, 0 ), FileVersion( 0, 9, 1 ) }, { 57, FileVersion( 0, 8, 2 ) }, { 56, FileVersion( 0, 8, 1 ) }, { 55, FileVersion( 0, 8, 0 ) },