Skip to content

Commit

Permalink
Fix update version info to 0.2.1 (#1477)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?

_Briefly describe what this PR aims to solve. Include background context
that will help reviewers understand the purpose of the PR._

### Type of change

- [x] Documentation Update

Signed-off-by: Jin Hai <[email protected]>
  • Loading branch information
JinHai-CN authored Jul 15, 2024
1 parent 6eb8cb9 commit 89b3842
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ if(DEFINED CPACK_PACKAGE_VERSION)
string(REPLACE "-" "." CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION}")
endif()
if(NOT DEFINED CPACK_PACKAGE_VERSION OR CPACK_PACKAGE_VERSION STREQUAL "")
set(CPACK_PACKAGE_VERSION "0.2.1.dev6")
set(CPACK_PACKAGE_VERSION "0.2.1")
endif()
set(CPACK_PACKAGE_RELEASE 1)
set(CPACK_PACKAGE_CONTACT "Zhichang Yu <[email protected]>")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Supports a wide range of data types including strings, numerics, vectors, and mo
Infinity, also available as a Python module, eliminates the need for a separate back-end server and all the complex communication settings. Using `pip install` and `import infinity`, you can quickly build a local AI application in Python, leveraging the world's fastest and the most powerful RAG database:

```bash
pip install infinity-sdk==0.2.1.dev6
pip install infinity-sdk==0.2.1
```

```python
Expand Down
2 changes: 1 addition & 1 deletion benchmark/remote_infinity/remote_query_benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct InfinityClient {
transport->open();
CommonResponse response;
ConnectRequest request;
request.__set_client_version(10); // 0.2.1.dev6
request.__set_client_version(10); // 0.2.1
client->Connect(response, request);
session_id = response.session_id;
}
Expand Down
2 changes: 1 addition & 1 deletion client/cpp/infinity_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Client Client::Connect(const std::string &ip_address, uint16_t port) {
transport->open();
CommonResponse response;
ConnectRequest request;
request.__set_client_version(10); // 0.2.1.dev6
request.__set_client_version(10); // 0.2.1
client->Connect(response, request);
return {socket, transport, protocol, std::move(client), response.session_id};
}
Expand Down
10 changes: 5 additions & 5 deletions docs/getstarted/deploy_infinity_server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This approach allows you to embed Infinity as a module in a Python application.
### Install Infinity as a module

```
pip install infinity-sdk==0.2.1.dev6
pip install infinity-sdk==0.2.1
```

### Create an Infinity object
Expand Down Expand Up @@ -98,7 +98,7 @@ If you are on Windows 10+, you must enable WSL or WSL2 to deploy Infinity using
### Install Infinity client

```
pip install infinity-sdk==0.2.1.dev6
pip install infinity-sdk==0.2.1
```
### Connect to Infinity Server
Expand Down Expand Up @@ -140,14 +140,14 @@ This section provides instructions on deploying Infinity using binary package on

Fedora/RHEL/CentOS/OpenSUSE
```bash
sudo rpm -i infinity-0.2.1.dev6-x86_64.rpm
sudo rpm -i infinity-0.2.1-x86_64.rpm
sudo systemctl start infinity
```
</TabItem>
<TabItem value="ubuntu">

```bash
sudo dpkg -i infinity-0.2.1.dev6-x86_64.deb
sudo dpkg -i infinity-0.2.1-x86_64.deb
sudo systemctl start infinity
```

Expand All @@ -157,7 +157,7 @@ sudo systemctl start infinity
### Install Infinity client

```
pip install infinity-sdk==0.2.1.dev6
pip install infinity-sdk==0.2.1
```

### Connect to Infinity Server
Expand Down
2 changes: 1 addition & 1 deletion docs/getstarted/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Infinity, also available as a Python module, eliminates the need for a separate

1. Install Infinity as a module:
```bash
pip install infinity-sdk==0.2.1.dev6
pip install infinity-sdk==0.2.1
```
2. Use Infinity to conduct a KNN search:
```python
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "infinity_sdk"
version = "0.2.1.dev6"
version = "0.2.1"
requires-python = ">=3.10"
dependencies = [
"sqlglot~=11.7.0",
Expand Down
2 changes: 1 addition & 1 deletion python/infinity/remote_thrift/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def reconnect(self):
# version: 0.2.0.dev8, client_version: 7
# version: 0.2.0, client_version: 8
# version: 0.2.1.dev5, client_version: 9
# version: 0.2.1.dev6, client_version: 10
# version: 0.2.1, client_version: 10
res = self.client.Connect(ConnectRequest(client_version=10))
if res.error_code != 0:
raise InfinityException(res.error_code, res.error_msg)
Expand Down
2 changes: 1 addition & 1 deletion src/network/infinity_thrift_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ ClientVersions::ClientVersions() {
client_version_map_[7] = String("0.2.0.dev8");
client_version_map_[8] = String("0.2.0");
client_version_map_[9] = String("0.2.1.dev5");
client_version_map_[10] = String("0.2.1.dev6");
client_version_map_[10] = String("0.2.1");
}

Pair<const char*, Status> ClientVersions::GetVersionByIndex(i64 version_index) {
Expand Down
2 changes: 1 addition & 1 deletion src/network/infinity_thrift_service.cppm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct ClientVersions {
export class InfinityThriftService final : public infinity_thrift_rpc::InfinityServiceIf {
private:
static constexpr std::string_view ErrorMsgHeader = "[THRIFT ERROR]";
static constexpr i64 current_version_index_{10}; // 0.2.1.dev6
static constexpr i64 current_version_index_{10}; // 0.2.1

static std::mutex infinity_session_map_mutex_;
static HashMap<u64, SharedPtr<Infinity>> infinity_session_map_;
Expand Down

0 comments on commit 89b3842

Please sign in to comment.