From 8fab09e6b193eeaa6ce31136e388006d185a4fa3 Mon Sep 17 00:00:00 2001 From: Chang Liu Date: Wed, 16 Aug 2023 10:14:47 -0400 Subject: [PATCH] Bump version to 0.0.7 --- CMakeLists.txt | 2 +- src/include/storage/storage_info.h | 6 +++--- tools/rust_api/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c3c1a25a5..7b794ae9ee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.11) -project(Kuzu VERSION 0.0.6.5 LANGUAGES CXX) +project(Kuzu VERSION 0.0.7 LANGUAGES CXX) find_package(Threads REQUIRED) diff --git a/src/include/storage/storage_info.h b/src/include/storage/storage_info.h index bf508ee535..390f091076 100644 --- a/src/include/storage/storage_info.h +++ b/src/include/storage/storage_info.h @@ -12,9 +12,9 @@ using storage_version_t = uint64_t; struct StorageVersionInfo { static std::unordered_map getStorageVersionInfo() { - return {{"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.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 95ed69f668..fa7489dffa 100644 --- a/tools/rust_api/Cargo.toml +++ b/tools/rust_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kuzu" -version = "0.0.6" +version = "0.0.7" 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"