Skip to content

Commit

Permalink
Add v1.1.1 to version_map.json (#14110)
Browse files Browse the repository at this point in the history
Adds "v1.1.1" to version_map.json and regenerates the storage_info.cpp
file. v1.1.1 uses the same storage and serialization version as v1.1.0.
  • Loading branch information
Mytherin authored Sep 25, 2024
2 parents b5743d0 + e1af589 commit dfdd09f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/storage/storage_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ static const StorageVersionInfo storage_version_info[] = {
{"v0.3.0", 25}, {"v0.3.1", 27}, {"v0.3.2", 31}, {"v0.3.3", 33}, {"v0.3.4", 33}, {"v0.3.5", 33}, {"v0.4.0", 33},
{"v0.5.0", 38}, {"v0.5.1", 38}, {"v0.6.0", 39}, {"v0.6.1", 39}, {"v0.7.0", 43}, {"v0.7.1", 43}, {"v0.8.0", 51},
{"v0.8.1", 51}, {"v0.9.0", 64}, {"v0.9.1", 64}, {"v0.9.2", 64}, {"v0.10.0", 64}, {"v0.10.1", 64}, {"v0.10.2", 64},
{"v0.10.3", 64}, {"v1.0.0", 64}, {"v1.1.0", 64}, {nullptr, 0}};
{"v0.10.3", 64}, {"v1.0.0", 64}, {"v1.1.0", 64}, {"v1.1.1", 64}, {nullptr, 0}};
// END OF STORAGE VERSION INFO

// START OF SERIALIZATION VERSION INFO
static const SerializationVersionInfo serialization_version_info[] = {{"v0.10.0", 1}, {"v0.10.1", 1}, {"v0.10.2", 1},
{"v0.10.3", 2}, {"v1.0.0", 2}, {"v1.1.0", 3},
{"latest", 3}, {nullptr, 0}};
{"v1.1.1", 3}, {"latest", 3}, {nullptr, 0}};
// END OF SERIALIZATION VERSION INFO

optional_idx GetStorageVersion(const char *version_string) {
Expand Down
4 changes: 3 additions & 1 deletion src/storage/version_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
"v0.10.2": 64,
"v0.10.3": 64,
"v1.0.0": 64,
"v1.1.0": 64
"v1.1.0": 64,
"v1.1.1": 64
},
"serialization": {
"v0.10.0": 1,
Expand All @@ -53,6 +54,7 @@
"v0.10.3": 2,
"v1.0.0": 2,
"v1.1.0": 3,
"v1.1.1": 3,
"latest": 3
}
}

0 comments on commit dfdd09f

Please sign in to comment.