From 3fe7e20e4f12acb060b2169eeecb08e57c220a45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=9B=A7=E5=9B=A7?= Date: Thu, 19 Oct 2023 03:36:49 -0500 Subject: [PATCH] Bump version to 0.0.11 (#2237) --- CMakeLists.txt | 2 +- src/include/common/constants.h | 2 +- src/include/storage/storage_info.h | 4 ++-- test/test_files/tinysnb/function/table.test | 2 +- tools/rust_api/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b2018333f6..f8ebbc1c54 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.11) -project(Kuzu VERSION 0.0.10 LANGUAGES CXX C) +project(Kuzu VERSION 0.0.11 LANGUAGES CXX C) find_package(Threads REQUIRED) diff --git a/src/include/common/constants.h b/src/include/common/constants.h index fa8b6a1d75..b1ade144d2 100644 --- a/src/include/common/constants.h +++ b/src/include/common/constants.h @@ -7,7 +7,7 @@ namespace kuzu { namespace common { -constexpr char KUZU_VERSION[] = "v0.0.10"; +constexpr char KUZU_VERSION[] = "v0.0.11"; constexpr uint64_t DEFAULT_VECTOR_CAPACITY_LOG_2 = 11; constexpr uint64_t DEFAULT_VECTOR_CAPACITY = (uint64_t)1 << DEFAULT_VECTOR_CAPACITY_LOG_2; diff --git a/src/include/storage/storage_info.h b/src/include/storage/storage_info.h index 871891fd17..00e4b49fad 100644 --- a/src/include/storage/storage_info.h +++ b/src/include/storage/storage_info.h @@ -12,8 +12,8 @@ using storage_version_t = uint64_t; struct StorageVersionInfo { static std::unordered_map getStorageVersionInfo() { - return {{"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.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/test/test_files/tinysnb/function/table.test b/test/test_files/tinysnb/function/table.test index 7cd5764e98..d93e50a253 100644 --- a/test/test_files/tinysnb/function/table.test +++ b/test/test_files/tinysnb/function/table.test @@ -79,7 +79,7 @@ height -LOG ReturnDBVersion -STATEMENT CALL db_version() RETURN version ---- 1 -v0.0.10 +v0.0.11 -LOG ReturnTableConnection -STATEMENT CALL show_connection('knows') RETURN * diff --git a/tools/rust_api/Cargo.toml b/tools/rust_api/Cargo.toml index b5880b365f..9efcd95927 100644 --- a/tools/rust_api/Cargo.toml +++ b/tools/rust_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kuzu" -version = "0.0.10" +version = "0.0.11" description = "An in-process property graph database management system built for query speed and scalability" # Note: 1.63 required for building tests rust-version = "1.51"