Skip to content

Commit 848b3a8

Browse files
committed
Update version to 0.2.0
Signed-off-by: Jin Hai <haijin.chn@gmail.com>
1 parent 8a886f9 commit 848b3a8

13 files changed

+16
-16
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.28.1)
22

3-
project(infinity VERSION 0.1.0)
3+
project(infinity VERSION 0.2.0)
44

55
if(NOT CMAKE_GENERATOR STREQUAL "Ninja")
66
message(FATAL_ERROR "This project requires the Ninja generator. Refers to https://cmake.org/cmake/help/latest/manual/cmake-cxxmodules.7.html#generator-support")
@@ -156,7 +156,7 @@ add_subdirectory(client)
156156

157157
# CPack settings
158158
set(CPACK_PACKAGE_NAME "infinity")
159-
set(CPACK_PACKAGE_VERSION "0.1.0")
159+
set(CPACK_PACKAGE_VERSION "0.2.0-dev")
160160
set(CPACK_PACKAGE_RELEASE 1)
161161
set(CPACK_PACKAGE_CONTACT "Zhichang Yu <yuzhichang@gmail.com>")
162162
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "The AI-native database built for LLM applications, offering incredibly fast vector and full-text search.")

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ You can download the binary package (deb, rpm, or tgz) for your respective host
6666

6767
Fedora/RHEL/CentOS/OpenSUSE
6868
```bash
69-
sudo rpm -i infinity-0.1.0-x86_64.rpm
69+
sudo rpm -i infinity-0.2.0-dev-x86_64.rpm
7070
sudo systemctl start infinity
7171
```
7272

7373
Ubuntu/Debian
7474
```bash
75-
sudo dpkg -i infinity-0.1.0-x86_64.deb
75+
sudo dpkg -i infinity-0.2.0-dev-x86_64.deb
7676
sudo systemctl start infinity
7777
```
7878
#### 🛠️ Build from Source

conf/infinity_conf.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.1.0"
2+
version = "0.2.0"
33
timezone = "utc-8"
44

55
[system]

python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "infinity_sdk"
3-
version = "0.1.0"
3+
version = "0.2.0.dev1"
44
dependencies = [
55
"sqlglot==11.7.1",
66
"pydantic",

src/unit_test/main/config.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ TEST_F(ConfigTest, test1) {
3434
Config config;
3535
config.Init(path);
3636

37-
EXPECT_EQ(config.version(), "0.1.0");
37+
EXPECT_EQ(config.version(), "0.2.0");
3838
EXPECT_EQ(config.time_zone(), "UTC");
3939
EXPECT_EQ(config.time_zone_bias(), 8);
4040

@@ -72,7 +72,7 @@ TEST_F(ConfigTest, test2) {
7272
Config config;
7373
config.Init(path);
7474

75-
EXPECT_EQ(config.version(), "0.1.0");
75+
EXPECT_EQ(config.version(), "0.2.0");
7676
EXPECT_EQ(config.time_zone(), "UTC");
7777
EXPECT_EQ(config.time_zone_bias(), -9);
7878

test/data/config/infinity_conf.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.1.0"
2+
version = "0.2.0"
33
timezone = "utc-9"
44

55
[system]

test/data/config/test_buffer_obj.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.1.0"
2+
version = "0.2.0"
33
timezone = "utc-8"
44

55
[storage]

test/data/config/test_buffer_obj_2.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.1.0"
2+
version = "0.2.0"
33
timezone = "utc-8"
44

55
[storage]

test/data/config/test_catalog_delta.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.1.0"
2+
version = "0.2.0"
33
timezone = "utc-8"
44

55
[storage]

test/data/config/test_checkpoint.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.1.0"
2+
version = "0.2.0"
33
timezone = "utc-8"
44

55
[storage]

test/data/config/test_cleanup_task.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.1.0"
2+
version = "0.2.0"
33
timezone = "utc-8"
44

55
[storage]

test/data/config/test_close_ckp.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.1.0"
2+
version = "0.2.0"
33
timezone = "utc-8"
44

55
[wal]

test/data/config/test_optimize.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.1.0"
2+
version = "0.2.0"
33
timezone = "utc-8"
44

55
[storage]

0 commit comments

Comments
 (0)