From 0c341b6022478d838024a57be733667f87f87676 Mon Sep 17 00:00:00 2001 From: Guodong Jin Date: Mon, 2 Oct 2023 22:58:14 +0800 Subject: [PATCH] bump version to v0.0.9 --- CMakeLists.txt | 2 +- src/include/storage/storage_info.h | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e7d8c399b3..b3811f4d7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.11) -project(Kuzu VERSION 0.0.8.12 LANGUAGES CXX C) +project(Kuzu VERSION 0.0.9 LANGUAGES CXX C) find_package(Threads REQUIRED) diff --git a/src/include/storage/storage_info.h b/src/include/storage/storage_info.h index 86965b7b24..a5703098d6 100644 --- a/src/include/storage/storage_info.h +++ b/src/include/storage/storage_info.h @@ -12,12 +12,8 @@ using storage_version_t = uint64_t; struct StorageVersionInfo { static std::unordered_map getStorageVersionInfo() { - return {{"0.0.8.12", 22}, {"0.0.8.11", 22}, {"0.0.8.10", 22}, {"0.0.8.9", 22}, - {"0.0.8.8", 21}, {"0.0.8.7", 21}, {"0.0.8.6", 20}, {"0.0.8.5", 19}, {"0.0.8.4", 19}, - {"0.0.8.3", 19}, {"0.0.8.2", 19}, {"0.0.8.1", 18}, {"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}}; + return {{"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();