diff --git a/common/TracyProtocol.hpp b/common/TracyProtocol.hpp index d30aad0e..14deebc2 100644 --- a/common/TracyProtocol.hpp +++ b/common/TracyProtocol.hpp @@ -9,7 +9,7 @@ namespace tracy constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; } -enum : uint32_t { ProtocolVersion = 33 }; +enum : uint32_t { ProtocolVersion = 34 }; enum : uint32_t { BroadcastVersion = 1 }; using lz4sz_t = uint32_t; diff --git a/server/TracyVersion.hpp b/server/TracyVersion.hpp index d040147a..eb2542f9 100644 --- a/server/TracyVersion.hpp +++ b/server/TracyVersion.hpp @@ -7,7 +7,7 @@ namespace Version { enum { Major = 0 }; enum { Minor = 6 }; -enum { Patch = 14 }; +enum { Patch = 15 }; } }