Skip to content

Commit

Permalink
Bump version to 0.1.0 (#2479)
Browse files Browse the repository at this point in the history
* Bump version to 0.1.0

* Update CI build wheel
  • Loading branch information
mewim authored Nov 21, 2023
1 parent eebb019 commit a7314db
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mac-wheel-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
python3 package_tar.py kuzu.tar.gz
- name: Build wheels for Apple Silicon
uses: pypa/cibuildwheel@v2.12.0
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_SKIP: pp*
CIBW_ARCHS_MACOS: arm64
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
python3 package_tar.py kuzu.tar.gz
- name: Build wheels for Intel
uses: pypa/cibuildwheel@v2.12.0
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_SKIP: pp* cp36*
CIBW_ARCHS_MACOS: x86_64
Expand Down
2 changes: 1 addition & 1 deletion 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.0.12.2 LANGUAGES CXX C)
project(Kuzu VERSION 0.1.0 LANGUAGES CXX C)

find_package(Threads REQUIRED)

Expand Down
2 changes: 1 addition & 1 deletion src/include/storage/storage_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using storage_version_t = uint64_t;

struct StorageVersionInfo {
static std::unordered_map<std::string, storage_version_t> getStorageVersionInfo() {
return {{"0.0.12.3", 24}, {"0.0.12.2", 24}, {"0.0.12.1", 24}, {"0.0.12", 23},
return {{"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}};
}
Expand Down
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.0.12"
version = "0.1.0"
description = "An in-process property graph database management system built for query speed and scalability"
# Note: 1.63 required for building tests
rust-version = "1.51"
Expand Down

0 comments on commit a7314db

Please sign in to comment.