From 6a382c1e23096f1610d9f2fd2c37426994e6530e Mon Sep 17 00:00:00 2001 From: Chang Liu Date: Thu, 14 Mar 2024 00:40:35 +0800 Subject: [PATCH] Bump master branch version to 0.3.2.1 --- CMakeLists.txt | 2 +- examples/rust/Cargo.lock | 2 +- src/include/storage/storage_info.h | 8 ++++---- tools/rust_api/Cargo.lock | 2 +- tools/rust_api/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3848081df6..10d8752383 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) -project(Kuzu VERSION 0.3.1.1 LANGUAGES CXX C) +project(Kuzu VERSION 0.3.2.1 LANGUAGES CXX C) find_package(Threads REQUIRED) diff --git a/examples/rust/Cargo.lock b/examples/rust/Cargo.lock index f6e2e480e2..d47685b733 100644 --- a/examples/rust/Cargo.lock +++ b/examples/rust/Cargo.lock @@ -404,7 +404,7 @@ dependencies = [ [[package]] name = "kuzu" -version = "0.3.1" +version = "0.3.2" dependencies = [ "arrow", "cmake", diff --git a/src/include/storage/storage_info.h b/src/include/storage/storage_info.h index 59c1aa12d3..c6b2ec6cf4 100644 --- a/src/include/storage/storage_info.h +++ b/src/include/storage/storage_info.h @@ -11,10 +11,10 @@ using storage_version_t = uint64_t; struct StorageVersionInfo { static std::unordered_map getStorageVersionInfo() { - return {{"0.3.1", 26}, {"0.3.0", 26}, {"0.2.1", 25}, {"0.2.0", 25}, {"0.1.0", 24}, - {"0.0.12.3", 24}, {"0.0.12.2", 24}, {"0.0.12.1", 24}, {"0.0.12", 23}, {"0.0.11", 23}, - {"0.0.10", 23}, {"0.0.9", 23}, {"0.0.8", 17}, {"0.0.7", 15}, {"0.0.6", 9}, {"0.0.5", 8}, - {"0.0.4", 7}, {"0.0.3", 1}}; + return {{"0.3.2", 26}, {"0.3.1", 26}, {"0.3.0", 26}, {"0.2.1", 25}, {"0.2.0", 25}, + {"0.1.0", 24}, {"0.0.12.3", 24}, {"0.0.12.2", 24}, {"0.0.12.1", 24}, {"0.0.12", 23}, + {"0.0.11", 23}, {"0.0.10", 23}, {"0.0.9", 23}, {"0.0.8", 17}, {"0.0.7", 15}, + {"0.0.6", 9}, {"0.0.5", 8}, {"0.0.4", 7}, {"0.0.3", 1}}; } static storage_version_t getStorageVersion(); diff --git a/tools/rust_api/Cargo.lock b/tools/rust_api/Cargo.lock index 5ca7ff68fc..ad0d80540a 100644 --- a/tools/rust_api/Cargo.lock +++ b/tools/rust_api/Cargo.lock @@ -426,7 +426,7 @@ dependencies = [ [[package]] name = "kuzu" -version = "0.3.1" +version = "0.3.2" dependencies = [ "anyhow", "arrow", diff --git a/tools/rust_api/Cargo.toml b/tools/rust_api/Cargo.toml index 9e9577e772..c4a675456c 100644 --- a/tools/rust_api/Cargo.toml +++ b/tools/rust_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kuzu" -version = "0.3.1" +version = "0.3.2" description = "An in-process property graph database management system built for query speed and scalability" # Note: 1.72 required for testing due to latest dependencies of the arrow feature rust-version = "1.60"