Skip to content

Commit 9a53ca7

Browse files
authored
Update changelogs, sdk version, and user-agent for v0.8.1 release (#103)
## Problem Prepare for v0.8.1 release ## Solution Update changelogs, sdk version, and the user-agent string to reflect v0.8.1. ## Type of Change - [X] Non-code change (docs, etc) ## Test Plan NA
1 parent 5cbfc9e commit 9a53ca7

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
[comment]: <> (When bumping [pc:VERSION_LATEST_RELEASE] create a new entry below)
44
### Unreleased version
5+
### v0.8.1
6+
- Update java generated code for control plane operations
7+
58
### v0.8.0
69
- Add support for control plane operations for serverless indexes
710
- Add support for collections for pod indexes

README.md

Lines changed: 3 additions & 3 deletions
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>0.8.0</version>
18+
<version>0.8.1</version>
1919
</dependency>
2020
```
2121

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

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

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

31-
Alternatively, you can use our standalone uberjar [pinecone-client-0.8.0-all.jar](https://repo1.maven.org/maven2/io/pinecone/pinecone-client/0.8.0/pinecone-client-0.8.0-all.jar), which bundles the pinecone client and all dependencies together inside a single jar. You can include this on your classpath like any 3rd party JAR without having to obtain the *pinecone-client* dependencies separately.
31+
Alternatively, you can use our standalone uberjar [pinecone-client-0.8.1-all.jar](https://repo1.maven.org/maven2/io/pinecone/pinecone-client/0.8.1/pinecone-client-0.8.1-all.jar), which bundles the pinecone client and all dependencies together inside a single jar. You can include this on your classpath like any 3rd party JAR without having to obtain the *pinecone-client* dependencies separately.
3232

3333
[comment]: <> (^ [pc:VERSION_LATEST_RELEASE])
3434

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pineconeClientVersion = 0.8.0
1+
pineconeClientVersion = 0.8.1

src/main/java/io/pinecone/PineconeClientConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ private String maskedApiKey() {
135135
}
136136

137137
public String getUserAgent() {
138-
String userAgentLanguage = "lang=java; pineconeClientVersion = v0.8.0";
138+
String userAgentLanguage = "lang=java; pineconeClientVersion = v0.8.1";
139139
return (this.getUsageContext() != null) ?
140140
userAgentLanguage + "; usageContext=" + this.getUsageContext() : userAgentLanguage;
141141
}

0 commit comments

Comments
 (0)