Skip to content

Commit b4440ad

Browse files
authored
Update version to 0.7.0.dev2 (#3220)
### What problem does this PR solve? As title ### Type of change - [x] Documentation Update - [x] Other (please describe): update version Signed-off-by: Jin Hai <[email protected]>
1 parent 64e8ec3 commit b4440ad

File tree

13 files changed

+19
-19
lines changed

13 files changed

+19
-19
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ If you are on Windows 10+, you must enable WSL or WSL2 to deploy Infinity using
9696
### Install Infinity client
9797

9898
```
99-
pip install infinity-sdk==0.7.0.dev1
99+
pip install infinity-sdk==0.7.0.dev2
100100
```
101101

102102
### Run a vector search

benchmark/remote_infinity/remote_query_benchmark.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ struct InfinityClient {
4545
transport->open();
4646
CommonResponse response;
4747
ConnectRequest request;
48-
request.__set_client_version(36); // 0.7.0.dev1
48+
request.__set_client_version(36); // 0.7.0.dev2
4949
client->Connect(response, request);
5050
session_id = response.session_id;
5151
}

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(36); // 0.7.0.dev1
28+
request.__set_client_version(36); // 0.7.0.dev2
2929
client->Connect(response, request);
3030
return {socket, transport, protocol, std::move(client), response.session_id};
3131
}

docs/getstarted/build_from_source.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ cmake --build . -t test_main
295295

296296
2. Install Python sdk of infinity:
297297
```bash
298-
pip install infinity-sdk==0.7.0.dev1
298+
pip install infinity-sdk==0.7.0.dev2
299299
```
300300

301301
3. Run the functional tests:
@@ -317,7 +317,7 @@ cmake --build . -t test_main
317317

318318
2. Install Python sdk of infinity:
319319
```bash
320-
pip install infinity-sdk==0.7.0.dev1
320+
pip install infinity-sdk==0.7.0.dev2
321321
```
322322

323323
3. Run the functional tests:
@@ -342,7 +342,7 @@ cmake --build . -t test_main
342342

343343
2. Install Python sdk of infinity:
344344
```bash
345-
pip install infinity-sdk==0.7.0.dev1
345+
pip install infinity-sdk==0.7.0.dev2
346346
```
347347

348348
3. Run the functional tests:

docs/getstarted/deploy_infinity_server.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This section provides instructions on deploying Infinity using binary package on
3535

3636
Fedora/RHEL/CentOS/OpenSUSE
3737
```bash
38-
sudo rpm -i infinity-0.7.0.dev1-x86_64.rpm
38+
sudo rpm -i infinity-0.7.0.dev2-x86_64.rpm
3939
```
4040

4141
```bash
@@ -46,7 +46,7 @@ sudo systemctl start infinity
4646
<TabItem value="ubuntu">
4747

4848
```bash
49-
sudo dpkg -i infinity-0.7.0.dev1-x86_64.deb
49+
sudo dpkg -i infinity-0.7.0.dev2-x86_64.deb
5050
```
5151

5252
```bash
@@ -59,7 +59,7 @@ sudo systemctl start infinity
5959
## Install Infinity client
6060

6161
```
62-
pip install infinity-sdk==0.7.0.dev1
62+
pip install infinity-sdk==0.7.0.dev2
6363
```
6464

6565
## Run a vector search

docs/getstarted/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ If you are on Windows 10+, you must enable WSL or WSL2 to deploy Infinity using
5959
### Install Infinity client
6060

6161
```
62-
pip install infinity-sdk==0.7.0.dev1
62+
pip install infinity-sdk==0.7.0.dev2
6363
```
6464

6565
### Run a vector search

example/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
The Python scripts in the current directory provides the examples of the infinity SDK API. Before running these scripts, please ensure that the correct version of infinity SDK is installed. If you are using the server version of Infinity, you can use the following command to install it
66

77
```shell
8-
pip install infinity-sdk==0.7.0.dev1
8+
pip install infinity-sdk==0.7.0.dev2
99
```
1010

1111
To use Infinity locally as a Python module, install the Infinity Embedded SDK:
1212

1313
```shell
14-
pip install infinity-embedded-sdk==0.7.0.dev1
14+
pip install infinity-embedded-sdk==0.7.0.dev2
1515
```
1616

1717
Once the installation completes, run some simple examples:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "infinity-sdk"
3-
version = "0.7.0.dev1"
3+
version = "0.7.0.dev2"
44
description = "infinity"
55
readme = "python/infinity_sdk/README.md"
66
license = "Apache-2.0"

python/infinity_sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Infinity supports two working modes, embedded mode and client-server mode. The f
6363

6464
2. Install the `infinity-sdk` package:
6565
```bash
66-
pip install infinity-sdk==0.7.0.dev1
66+
pip install infinity-sdk==0.7.0.dev2
6767
```
6868

6969
3. Use Infinity to conduct a dense vector search:

python/infinity_sdk/infinity/remote_thrift/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ def _reconnect(self):
120120
# version: 0.6.8 and 0.6.9 and 0.6.10, client_version: 33
121121
# version: 0.6.13, client_version: 34
122122
# version: 0.6.15, client_version: 35
123-
# version: 0.7.0, client_version: 36
124-
res = self.client.Connect(ConnectRequest(client_version=36)) # 0.7.0.dev1
123+
# version: 0.7.0, 0.7.0.dev1, 0.7.0.dev2, client_version: 36
124+
res = self.client.Connect(ConnectRequest(client_version=36)) # 0.7.0.dev2
125125
if res.error_code != 0:
126126
raise InfinityException(res.error_code, res.error_msg)
127127
self.session_id = res.session_id

0 commit comments

Comments
 (0)