From 7b3a777666c16563d27ff490fd7306fa259b4bc1 Mon Sep 17 00:00:00 2001 From: Guodong Jin Date: Tue, 13 Aug 2024 23:45:30 -0400 Subject: [PATCH] bump version to 0.5.1 --- CMakeLists.txt | 2 +- src/include/storage/storage_version_info.h | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3cb24fd5be7..89e0b6bcab5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) -project(Kuzu VERSION 0.5.0 LANGUAGES CXX C) +project(Kuzu VERSION 0.5.1 LANGUAGES CXX C) find_package(Threads REQUIRED) diff --git a/src/include/storage/storage_version_info.h b/src/include/storage/storage_version_info.h index 600c84d548b..bd1fa2efd30 100644 --- a/src/include/storage/storage_version_info.h +++ b/src/include/storage/storage_version_info.h @@ -13,11 +13,11 @@ using storage_version_t = uint64_t; struct StorageVersionInfo { static std::unordered_map getStorageVersionInfo() { - return {{"0.5.0", 28}, {"0.4.2", 27}, {"0.4.1", 27}, {"0.4.0", 27}, {"0.3.2", 26}, - {"0.3.1", 26}, {"0.3.0", 26}, {"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.5.1", 28}, {"0.5.0", 28}, {"0.4.2", 27}, {"0.4.1", 27}, {"0.4.0", 27}, + {"0.3.2", 26}, {"0.3.1", 26}, {"0.3.0", 26}, {"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 KUZU_API storage_version_t getStorageVersion();