Skip to content

Commit 06489fd

Browse files
authored
Fix bug and update version (#3190)
### What problem does this PR solve? 1. Fix pysdk release bug 2. update version to 0.6.13 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --------- Signed-off-by: Jin Hai <[email protected]>
1 parent 6132cf2 commit 06489fd

96 files changed

Lines changed: 101 additions & 101 deletions

File tree

Some content is hidden

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

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.12)
26+
project(infinity VERSION 0.6.13)
2727

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

README.md

Lines changed: 1 addition & 1 deletion

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(34); // 0.6.12
28+
request.__set_client_version(34); // 0.6.13
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.12"
2+
version = "0.6.13"
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.12"
2+
version = "0.6.13"
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.12"
2+
version = "0.6.13"
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.12"
2+
version = "0.6.13"
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.12"
2+
version = "0.6.13"
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.12"
2+
version = "0.6.13"
33
time_zone = "utc-8"
44
server_mode = "admin" # "standalone"
55

conf/learner2.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.12"
2+
version = "0.6.13"
33
time_zone = "utc-8"
44
server_mode = "admin" # "standalone"
55

0 commit comments

Comments
 (0)