Skip to content

Commit c6e2dfa

Browse files
committed
[ntuple] bump anchor version to 1.0.0.2
1 parent 14ca4a5 commit c6e2dfa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tree/ntuple/inc/ROOT/RNTuple.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public:
7878
static constexpr std::uint16_t kVersionEpoch = 1;
7979
static constexpr std::uint16_t kVersionMajor = 0;
8080
static constexpr std::uint16_t kVersionMinor = 0;
81-
static constexpr std::uint16_t kVersionPatch = 1;
81+
static constexpr std::uint16_t kVersionPatch = 2;
8282

8383
private:
8484
/// Version of the RNTuple binary format that the writer supports (see specification).

tree/ntuple/test/ntuple_minifile.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ TEST(MiniFile, Stream)
7979
EXPECT_EQ(1u, ntuple.GetVersionEpoch());
8080
EXPECT_EQ(0u, ntuple.GetVersionMajor());
8181
EXPECT_EQ(0u, ntuple.GetVersionMinor());
82-
EXPECT_EQ(1u, ntuple.GetVersionPatch());
82+
EXPECT_EQ(2u, ntuple.GetVersionPatch());
8383
EXPECT_EQ(offHeader, ntuple.GetSeekHeader());
8484
EXPECT_EQ(offFooter, ntuple.GetSeekFooter());
8585

@@ -118,7 +118,7 @@ TEST(MiniFile, Proper)
118118
EXPECT_EQ(1u, ntuple.GetVersionEpoch());
119119
EXPECT_EQ(0u, ntuple.GetVersionMajor());
120120
EXPECT_EQ(0u, ntuple.GetVersionMinor());
121-
EXPECT_EQ(1u, ntuple.GetVersionPatch());
121+
EXPECT_EQ(2u, ntuple.GetVersionPatch());
122122
EXPECT_EQ(offHeader, ntuple.GetSeekHeader());
123123
EXPECT_EQ(offFooter, ntuple.GetSeekFooter());
124124

0 commit comments

Comments
 (0)