From d872e159e278d354bd1f41892633fe1658f5454d Mon Sep 17 00:00:00 2001 From: Chang Liu Date: Mon, 28 Aug 2023 21:47:49 +0800 Subject: [PATCH] Bump version to 0.0.8 --- CMakeLists.txt | 2 +- src/include/storage/storage_info.h | 8 ++++---- tools/rust_api/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b36a99a58..3c31509a5a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.11) -project(Kuzu VERSION 0.0.7.1 LANGUAGES CXX) +project(Kuzu VERSION 0.0.8 LANGUAGES CXX) find_package(Threads REQUIRED) diff --git a/src/include/storage/storage_info.h b/src/include/storage/storage_info.h index 7f6e28a46a..acd7452d46 100644 --- a/src/include/storage/storage_info.h +++ b/src/include/storage/storage_info.h @@ -12,10 +12,10 @@ using storage_version_t = uint64_t; struct StorageVersionInfo { static std::unordered_map getStorageVersionInfo() { - return {{"0.0.7.1", 16}, {"0.0.7", 15}, {"0.0.6.5", 14}, {"0.0.6.4", 13}, {"0.0.6.3", 12}, - {"0.0.6.2", 11}, {"0.0.6.1", 10}, {"0.0.6", 9}, {"0.0.5", 8}, {"0.0.4", 7}, - {"0.0.3.5", 6}, {"0.0.3.4", 5}, {"0.0.3.3", 4}, {"0.0.3.2", 3}, {"0.0.3.1", 2}, - {"0.0.3", 1}}; + return {{"0.0.8", 17}, {"0.0.7.1", 16}, {"0.0.7", 15}, {"0.0.6.5", 14}, {"0.0.6.4", 13}, + {"0.0.6.3", 12}, {"0.0.6.2", 11}, {"0.0.6.1", 10}, {"0.0.6", 9}, {"0.0.5", 8}, + {"0.0.4", 7}, {"0.0.3.5", 6}, {"0.0.3.4", 5}, {"0.0.3.3", 4}, {"0.0.3.2", 3}, + {"0.0.3.1", 2}, {"0.0.3", 1}}; } static storage_version_t getStorageVersion(); diff --git a/tools/rust_api/Cargo.toml b/tools/rust_api/Cargo.toml index 1d9530c4fc..af8b529660 100644 --- a/tools/rust_api/Cargo.toml +++ b/tools/rust_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kuzu" -version = "0.0.7" +version = "0.0.8" 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"