Skip to content

Commit

Permalink
Bump project version to 0.7.0 (#4525)
Browse files Browse the repository at this point in the history
* Bump project version to 0.7.0

* Run clang-format

---------

Co-authored-by: CI Bot <[email protected]>
  • Loading branch information
mewim and mewim authored Nov 15, 2024
1 parent fb36fa7 commit 289dc1a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)

project(Kuzu VERSION 0.6.0.8 LANGUAGES CXX C)
project(Kuzu VERSION 0.7.0 LANGUAGES CXX C)

option(SINGLE_THREADED "Single-threaded mode" FALSE)
if(SINGLE_THREADED)
Expand Down Expand Up @@ -300,7 +300,7 @@ add_subdirectory(third_party)
if(${BUILD_KUZU})
add_definitions(-DKUZU_ROOT_DIRECTORY="${PROJECT_SOURCE_DIR}")
add_definitions(-DKUZU_CMAKE_VERSION="${CMAKE_PROJECT_VERSION}")
add_definitions(-DKUZU_EXTENSION_VERSION="0.5.2.6")
add_definitions(-DKUZU_EXTENSION_VERSION="0.7.0")
add_definitions(-DKUZU_PAGE_SIZE_LOG2=${PAGE_SIZE_LOG2})
add_definitions(-DKUZU_VECTOR_CAPACITY_LOG2=${VECTOR_CAPACITY_LOG2})

Expand Down
2 changes: 1 addition & 1 deletion examples/rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions scripts/extension/PRODUCTION_RELEASES
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ v0.3.0
v0.3.1
v0.5.0
v0.5.1.3
v0.6.1
v0.7.0
vdev
12 changes: 6 additions & 6 deletions src/include/storage/storage_version_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ using storage_version_t = uint64_t;

struct StorageVersionInfo {
static std::unordered_map<std::string, storage_version_t> getStorageVersionInfo() {
return {{"0.6.0.6", 33}, {"0.6.0.5", 32}, {"0.6.0.2", 31}, {"0.6.0.1", 31}, {"0.6.0", 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}};
return {{"0.7.0", 34}, {"0.6.0.6", 33}, {"0.6.0.5", 32}, {"0.6.0.2", 31}, {"0.6.0.1", 31},
{"0.6.0", 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();
Expand Down
2 changes: 1 addition & 1 deletion tools/rust_api/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/rust_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kuzu"
version = "0.5.0"
version = "0.7.0"
description = "An in-process property graph database management system built for query speed and scalability"
# Note: 1.72 required for testing due to latest dependencies of the arrow feature
rust-version = "1.60"
Expand Down

0 comments on commit 289dc1a

Please sign in to comment.