From 21f1731cc7653eb22d1e8dab5477abe1be65b2ae Mon Sep 17 00:00:00 2001 From: Guodong Jin Date: Fri, 23 Feb 2024 18:33:47 +0800 Subject: [PATCH] bump version to 0.2.2 (#2935) --- CMakeLists.txt | 2 +- src/include/storage/storage_info.h | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 17ed919c8b..dfc5468e9e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) -project(Kuzu VERSION 0.2.1.1 LANGUAGES CXX C) +project(Kuzu VERSION 0.2.2 LANGUAGES CXX C) find_package(Threads REQUIRED) diff --git a/src/include/storage/storage_info.h b/src/include/storage/storage_info.h index 41840cc2fd..ead586fc66 100644 --- a/src/include/storage/storage_info.h +++ b/src/include/storage/storage_info.h @@ -11,9 +11,10 @@ using storage_version_t = uint64_t; struct StorageVersionInfo { static std::unordered_map getStorageVersionInfo() { - return {{"0.2.1", 25}, {"0.2.0", 25}, {"0.1.0", 24}, {"0.0.12.3", 24}, {"0.0.12.2", 24}, - {"0.0.12.1", 24}, {"0.0.12", 23}, {"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}}; + return {{"0.2.2", 25}, {"0.2.1", 25}, {"0.2.0", 25}, {"0.1.0", 24}, {"0.0.12.3", 24}, + {"0.0.12.2", 24}, {"0.0.12.1", 24}, {"0.0.12", 23}, {"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();