From 5456537e1c89115009fb673ed95ddbfccf47fb01 Mon Sep 17 00:00:00 2001 From: Guodong Jin Date: Sun, 16 Apr 2023 15:10:32 -0400 Subject: [PATCH] trigger reload --- CMakeLists.txt | 2 +- src/include/storage/storage_info.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c306d47993e..2ed66c026c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.11) -project(Kuzu VERSION 0.0.3.1 LANGUAGES CXX) +project(Kuzu VERSION 0.0.3.2 LANGUAGES CXX) find_package(Threads REQUIRED) diff --git a/src/include/storage/storage_info.h b/src/include/storage/storage_info.h index 24aaa649f61..c163d70da37 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.3.1", 2}, {"0.0.3", 1}}; + return {{"0.0.3.2", 3}, {"0.0.3.1", 2}, {"0.0.3", 1}}; } static storage_version_t getStorageVersion();