From 1e9d4fdbd1ab1a5e7a6d8d1559d05d3b1ab21f9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=9B=A7=E5=9B=A7?= Date: Mon, 17 Jul 2023 13:32:56 -0400 Subject: [PATCH] Bump version number to 0.0.6 (#1824) * Bump version number to 0.0.6 * Also update storage info --- CMakeLists.txt | 2 +- src/include/storage/storage_info.h | 2 +- tools/rust_api/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f2b7d8284..12d76210b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.11) -project(Kuzu VERSION 0.0.5 LANGUAGES CXX) +project(Kuzu VERSION 0.0.6 LANGUAGES CXX) find_package(Threads REQUIRED) diff --git a/src/include/storage/storage_info.h b/src/include/storage/storage_info.h index d43fe81e8f..8906a5d1c5 100644 --- a/src/include/storage/storage_info.h +++ b/src/include/storage/storage_info.h @@ -12,7 +12,7 @@ using storage_version_t = uint64_t; struct StorageVersionInfo { static std::unordered_map getStorageVersionInfo() { - return {{"0.0.5.1", 9}, {"0.0.5", 8}, {"0.0.4", 7}, {"0.0.3.5", 6}, {"0.0.3.4", 5}, + return {{"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}}; } diff --git a/tools/rust_api/Cargo.toml b/tools/rust_api/Cargo.toml index 75f4a47a89..918eed236e 100644 --- a/tools/rust_api/Cargo.toml +++ b/tools/rust_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kuzu" -version = "0.0.5" +version = "0.0.6" 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"