Skip to content

Commit a435db3

Browse files
authored
Bump version to 0.9.0 in CMake, Cargo files, and update production releases (#5174)
1 parent b70b9fc commit a435db3

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.15)
22

3-
project(Kuzu VERSION 0.8.0.1 LANGUAGES CXX C)
3+
project(Kuzu VERSION 0.9.0 LANGUAGES CXX C)
44

55
option(SINGLE_THREADED "Single-threaded mode" FALSE)
66
if(SINGLE_THREADED)
@@ -358,7 +358,7 @@ add_subdirectory(third_party)
358358

359359
add_definitions(-DKUZU_ROOT_DIRECTORY="${PROJECT_SOURCE_DIR}")
360360
add_definitions(-DKUZU_CMAKE_VERSION="${CMAKE_PROJECT_VERSION}")
361-
add_definitions(-DKUZU_EXTENSION_VERSION="0.8.0")
361+
add_definitions(-DKUZU_EXTENSION_VERSION="0.9.0")
362362

363363
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/extension/CMakeLists.txt")
364364
add_subdirectory(extension)

examples/rust/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/extension/PRODUCTION_RELEASES

+2
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ v0.6.1
77
v0.7.0
88
v0.7.1
99
v0.8.0
10+
v0.8.1
11+
v0.9.0
1012
vdev

src/include/storage/storage_version_info.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ using storage_version_t = uint64_t;
1313

1414
struct StorageVersionInfo {
1515
static std::unordered_map<std::string, storage_version_t> getStorageVersionInfo() {
16-
return {{"0.8.0.1", 37}, {"0.8.0", 36}, {"0.7.1.1", 35}, {"0.7.0", 34}, {"0.6.0.6", 33},
16+
return {{"0.9.0", 37}, {"0.8.0", 36}, {"0.7.1.1", 35}, {"0.7.0", 34}, {"0.6.0.6", 33},
1717
{"0.6.0.5", 32}, {"0.6.0.2", 31}, {"0.6.0.1", 31}, {"0.6.0", 28}, {"0.5.0", 28},
1818
{"0.4.2", 27}, {"0.4.1", 27}, {"0.4.0", 27}, {"0.3.2", 26}, {"0.3.1", 26},
1919
{"0.3.0", 26}, {"0.2.1", 25}, {"0.2.0", 25}, {"0.1.0", 24}, {"0.0.12.3", 24},

tools/rust_api/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/rust_api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kuzu"
3-
version = "0.8.0"
3+
version = "0.9.0"
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.67"

0 commit comments

Comments
 (0)