Skip to content

Commit

Permalink
update readme and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminran committed May 14, 2021
1 parent a722454 commit ce7a80c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Pinecone Java client lets JVM applications interact with Pinecone services.

## Installation

*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.
*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.

### Dependency Managers
*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):
Expand All @@ -28,13 +28,13 @@ Maven:
<dependency>
<groupId>io.pinecone</groupId>
<artifactId>pinecone-client</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
</dependency>
```

Gradle:
```
implementation "io.pinecone:pinecone-client:0.1.1"
implementation "io.pinecone:pinecone-client:0.1.2"
```

### Uberjar
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = 'io.pinecone'
version = '0.1.1'
version = '0.1.2'
description = 'The Pinecone.io Java Client'

sourceCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion examples/java-basic-mvn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<dependency>
<groupId>io.pinecone</groupId>
<artifactId>pinecone-client</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
</dependency>
<dependency> <!-- Add an slf4j binding like this if you want to see logs emitted by pinecone-client -->
<groupId>org.slf4j</groupId>
Expand Down

0 comments on commit ce7a80c

Please sign in to comment.