From c8146fa7fcad061dfc347c51034f19e47fbb6f40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=9B=A7=E5=9B=A7?= Date: Mon, 26 Feb 2024 17:09:52 +0800 Subject: [PATCH] Bump version to 0.3.0 (#2945) --- CMakeLists.txt | 2 +- examples/rust/Cargo.lock | 2 +- src/include/storage/storage_info.h | 7 ++++--- tools/rust_api/Cargo.lock | 2 +- tools/rust_api/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 17ed919c8b..4761998428 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) -project(Kuzu VERSION 0.2.1.1 LANGUAGES CXX C) +project(Kuzu VERSION 0.3.0 LANGUAGES CXX C) find_package(Threads REQUIRED) diff --git a/examples/rust/Cargo.lock b/examples/rust/Cargo.lock index f8bd59b916..b5a4004dd4 100644 --- a/examples/rust/Cargo.lock +++ b/examples/rust/Cargo.lock @@ -404,7 +404,7 @@ dependencies = [ [[package]] name = "kuzu" -version = "0.2.1" +version = "0.3.0" dependencies = [ "arrow", "cmake", diff --git a/src/include/storage/storage_info.h b/src/include/storage/storage_info.h index 41840cc2fd..e2d79cd4d0 100644 --- a/src/include/storage/storage_info.h +++ b/src/include/storage/storage_info.h @@ -11,9 +11,10 @@ using storage_version_t = uint64_t; struct StorageVersionInfo { static std::unordered_map getStorageVersionInfo() { - return {{"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.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 40ef5a0101..be96224dec 100644 --- a/tools/rust_api/Cargo.lock +++ b/tools/rust_api/Cargo.lock @@ -426,7 +426,7 @@ dependencies = [ [[package]] name = "kuzu" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "arrow", diff --git a/tools/rust_api/Cargo.toml b/tools/rust_api/Cargo.toml index 5a049a1652..b1d596a311 100644 --- a/tools/rust_api/Cargo.toml +++ b/tools/rust_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kuzu" -version = "0.2.1" +version = "0.3.0" 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"