Skip to content

Commit faa2996

Browse files
authored
Update version to 0.6.8 (#3126)
### What problem does this PR solve? As title ### Type of change - [x] Python SDK impacted, Need to update PyPI - [x] Other (please describe): Update version Signed-off-by: Jin Hai <haijin.chn@gmail.com>
1 parent 34a59b6 commit faa2996

File tree

99 files changed

+109
-107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+109
-107
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if (NOT CMAKE_TOOLCHAIN_FILE)
2323
endif ()
2424
endif ()
2525

26-
project(infinity VERSION 0.6.7)
26+
project(infinity VERSION 0.6.8)
2727

2828
set(CMAKE_CXX_STANDARD 23)
2929
set(CMAKE_CXX_STANDARD_REQUIRED ON)

README.md

Lines changed: 1 addition & 1 deletion

benchmark/remote_infinity/remote_query_benchmark.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ struct InfinityClient {
4848
transport->open();
4949
CommonResponse response;
5050
ConnectRequest request;
51-
request.__set_client_version(32); // 0.6.7
51+
request.__set_client_version(33); // 0.6.8
5252
client->Connect(response, request);
5353
session_id = response.session_id;
5454
}

client/cpp/infinity_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Client Client::Connect(const std::string &ip_address, uint16_t port) {
2525
transport->open();
2626
CommonResponse response;
2727
ConnectRequest request;
28-
request.__set_client_version(32); // 0.6.7
28+
request.__set_client_version(33); // 0.6.8
2929
client->Connect(response, request);
3030
return {socket, transport, protocol, std::move(client), response.session_id};
3131
}

conf/benchmark_conf.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.6.7"
2+
version = "0.6.8"
33
time_zone = "utc-8"
44

55
[network]

conf/follower.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.6.7"
2+
version = "0.6.8"
33
time_zone = "utc-8"
44
server_mode = "admin" # "standalone"
55

conf/infinity_conf.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.6.7"
2+
version = "0.6.8"
33
time_zone = "utc-8"
44

55
[network]

conf/infinity_minio_conf.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.6.7"
2+
version = "0.6.8"
33
time_zone = "utc-8"
44

55
[network]

conf/leader.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.6.7"
2+
version = "0.6.8"
33
time_zone = "utc-8"
44
server_mode = "admin" # "standalone"
55

conf/learner.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.6.7"
2+
version = "0.6.8"
33
time_zone = "utc-8"
44
server_mode = "admin" # "standalone"
55

0 commit comments

Comments
 (0)