Skip to content

Commit e2dbc88

Browse files
author
Kuzu CI
committed
Bump all version number
1 parent ca43c5d commit e2dbc88

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ add_subdirectory(third_party)
317317
if(${BUILD_KUZU})
318318
add_definitions(-DKUZU_ROOT_DIRECTORY="${PROJECT_SOURCE_DIR}")
319319
add_definitions(-DKUZU_CMAKE_VERSION="${CMAKE_PROJECT_VERSION}")
320-
add_definitions(-DKUZU_EXTENSION_VERSION="0.7.0")
320+
add_definitions(-DKUZU_EXTENSION_VERSION="0.7.1")
321321
add_definitions(-DKUZU_PAGE_SIZE_LOG2=${PAGE_SIZE_LOG2})
322322
add_definitions(-DKUZU_VECTOR_CAPACITY_LOG2=${VECTOR_CAPACITY_LOG2})
323323

examples/rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/extension/PRODUCTION_RELEASES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ v0.5.0
55
v0.5.1.3
66
v0.6.1
77
v0.7.0
8+
v0.7.1
89
vdev

src/include/storage/storage_version_info.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ using storage_version_t = uint64_t;
1313

1414
struct StorageVersionInfo {
1515
static std::unordered_map<std::string, storage_version_t> getStorageVersionInfo() {
16-
return {{"0.7.0", 34}, {"0.6.0.6", 33}, {"0.6.0.5", 32}, {"0.6.0.2", 31}, {"0.6.0.1", 31},
17-
{"0.6.0", 28}, {"0.5.0", 28}, {"0.4.2", 27}, {"0.4.1", 27}, {"0.4.0", 27},
18-
{"0.3.2", 26}, {"0.3.1", 26}, {"0.3.0", 26}, {"0.2.1", 25}, {"0.2.0", 25},
19-
{"0.1.0", 24}, {"0.0.12.3", 24}, {"0.0.12.2", 24}, {"0.0.12.1", 24}, {"0.0.12", 23},
20-
{"0.0.11", 23}, {"0.0.10", 23}, {"0.0.9", 23}, {"0.0.8", 17}, {"0.0.7", 15},
21-
{"0.0.6", 9}, {"0.0.5", 8}, {"0.0.4", 7}, {"0.0.3", 1}};
16+
return {{"0.7.1", 34}, {"0.7.0", 34}, {"0.6.0.6", 33}, {"0.6.0.5", 32}, {"0.6.0.2", 31},
17+
{"0.6.0.1", 31}, {"0.6.0", 28}, {"0.5.0", 28}, {"0.4.2", 27}, {"0.4.1", 27},
18+
{"0.4.0", 27}, {"0.3.2", 26}, {"0.3.1", 26}, {"0.3.0", 26}, {"0.2.1", 25},
19+
{"0.2.0", 25}, {"0.1.0", 24}, {"0.0.12.3", 24}, {"0.0.12.2", 24}, {"0.0.12.1", 24},
20+
{"0.0.12", 23}, {"0.0.11", 23}, {"0.0.10", 23}, {"0.0.9", 23}, {"0.0.8", 17},
21+
{"0.0.7", 15}, {"0.0.6", 9}, {"0.0.5", 8}, {"0.0.4", 7}, {"0.0.3", 1}};
2222
}
2323

2424
static KUZU_API storage_version_t getStorageVersion();

tools/rust_api/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/rust_api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kuzu"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = "An in-process property graph database management system built for query speed and scalability"
55
# Note: 1.72 required for testing due to latest dependencies of the arrow feature
66
rust-version = "1.60"

0 commit comments

Comments
 (0)