Skip to content

Commit ce7a80c

Browse files
committed
update readme and bump version
1 parent a722454 commit ce7a80c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Pinecone Java client lets JVM applications interact with Pinecone services.
88

99
## Installation
1010

11-
*pinecone-client* is not yet available in public repositories, but you can find the latest release [here](https://github.com/pinecone-io/pinecone-java-client/releases). Download and unzip it, then see below for ways to integrate *pinecone-client* into your application.
11+
*pinecone-client* is not yet available in public repositories, but you can find the latest release [here](https://github.com/pinecone-io/pinecone-java-client/releases). Download and unzip *pinecone-java-client-dist-${version}.zip*, then read on for to integrate *pinecone-client* into your application.
1212

1313
### Dependency Managers
1414
*pinecone-client* can be installed to your local maven repository for use as a maven dependency with the [maven-install-plugin](https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html):
@@ -28,13 +28,13 @@ Maven:
2828
<dependency>
2929
<groupId>io.pinecone</groupId>
3030
<artifactId>pinecone-client</artifactId>
31-
<version>0.1.1</version>
31+
<version>0.1.2</version>
3232
</dependency>
3333
```
3434

3535
Gradle:
3636
```
37-
implementation "io.pinecone:pinecone-client:0.1.1"
37+
implementation "io.pinecone:pinecone-client:0.1.2"
3838
```
3939

4040
### Uberjar

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = 'io.pinecone'
11-
version = '0.1.1'
11+
version = '0.1.2'
1212
description = 'The Pinecone.io Java Client'
1313

1414
sourceCompatibility = 1.8

examples/java-basic-mvn/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>io.pinecone</groupId>
2323
<artifactId>pinecone-client</artifactId>
24-
<version>0.1.1</version>
24+
<version>0.1.2</version>
2525
</dependency>
2626
<dependency> <!-- Add an slf4j binding like this if you want to see logs emitted by pinecone-client -->
2727
<groupId>org.slf4j</groupId>

0 commit comments

Comments
 (0)