From 88924db32c17a2791062f150bf4e4454937a3745 Mon Sep 17 00:00:00 2001 From: kirkrodrigues <2454684+kirkrodrigues@users.noreply.github.com> Date: Mon, 10 Jun 2024 01:05:52 -0400 Subject: [PATCH] core-clp: Update archive format version due to previous format change in #412. (#433) --- components/core/src/clp/streaming_archive/Constants.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/core/src/clp/streaming_archive/Constants.hpp b/components/core/src/clp/streaming_archive/Constants.hpp index 9e0d60a42..80fe3b1aa 100644 --- a/components/core/src/clp/streaming_archive/Constants.hpp +++ b/components/core/src/clp/streaming_archive/Constants.hpp @@ -4,7 +4,7 @@ #include "../Defs.h" namespace clp::streaming_archive { -constexpr archive_format_version_t cArchiveFormatVersion = cArchiveFormatDevVersionFlag | 8; +constexpr archive_format_version_t cArchiveFormatVersion = cArchiveFormatDevVersionFlag | 9; constexpr char cSegmentsDirname[] = "s"; constexpr char cSegmentListFilename[] = "segment_list.txt"; constexpr char cLogTypeDictFilename[] = "logtype.dict";