Skip to content

Commit a6f34ab

Browse files
committed
Prepare for releasing v3.0.0 (#165)
## Problem Prepare for releasing Java SDK v3.0.0. ## Solution Releasing a major version requires updating: 1. README 2. gradle.properties 3. CHANGELOG.md 4. Constants.java ## Type of Change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update - [ ] Infrastructure change (CI configs, etc) - [X] Non-code change (docs, etc) - [ ] None of the above: (explain here) ## Test Plan No code is updated as a part of this change, integration tests should run as expected.
1 parent 6fcb3d2 commit a6f34ab

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
[comment]: <> (When bumping [pc:VERSION_LATEST_RELEASE] create a new entry below)
44
### Unreleased version
5+
### 3.0.0
6+
- Add support for imports
7+
- start import
8+
- list imports
9+
- describe import
10+
- cancel import
11+
- Add support for inference
12+
- embed
13+
- rerank
14+
- Generate code based on 2024-10 open-api spec
15+
516
### 2.1.0
617
- Add support to disable TLS for data plane operations
718

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ Maven:
1515
<dependency>
1616
<groupId>io.pinecone</groupId>
1717
<artifactId>pinecone-client</artifactId>
18-
<version>2.0.0</version>
18+
<version>3.0.0</version>
1919
</dependency>
2020
```
2121

2222
[comment]: <> (^ [pc:VERSION_LATEST_RELEASE])
2323

2424
Gradle:
2525
```
26-
implementation "io.pinecone:pinecone-client:2.0.0"
26+
implementation "io.pinecone:pinecone-client:3.0.0"
2727
```
2828

2929
[comment]: <> (^ [pc:VERSION_LATEST_RELEASE])
3030

31-
Alternatively, you can use our standalone uberjar [pinecone-client-2.0.0-all.jar](https://repo1.maven.org/maven2/io/pinecone/pinecone-client/2.0.0/pinecone-client-2.0.0-all.jar), which bundles the Pinecone
31+
Alternatively, you can use our standalone uberjar [pinecone-client-3.0.0-all.jar](https://repo1.maven.org/maven2/io/pinecone/pinecone-client/3.0.0/pinecone-client-3.0.0-all.jar), which bundles the Pinecone
3232
SDK and all dependencies together. You can include this in your classpath like you do with any 3rd party JAR without
3333
having to obtain the *pinecone-client* dependencies separately.
3434

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pineconeClientVersion = 2.1.0
1+
pineconeClientVersion = 3.0.0
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package io.pinecone.commons;
22

33
public class Constants {
4-
public static final String pineconeClientVersion = "v2.1.0";
4+
public static final String pineconeClientVersion = "v3.0.0";
55
}

0 commit comments

Comments
 (0)