Skip to content

Commit

Permalink
Updates license, bump some dependencies and fix local build in previo…
Browse files Browse the repository at this point in the history
…us release
  • Loading branch information
Adam Gutglick committed Mar 13, 2022
1 parent b516757 commit 6b71743
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ Maven:
<dependency>
<groupId>io.pinecone</groupId>
<artifactId>pinecone-client</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>
</dependency>
```

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

Gradle:
```
implementation "io.pinecone:pinecone-client:0.2.0"
implementation "io.pinecone:pinecone-client:0.2.1"
```

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

Alternatively, you can use our standalone uberjar [pinecone-client-0.2.0-all.jar](https://repo1.maven.org/maven2/io/pinecone/pinecone-client/0.2.0/pinecone-client-0.2.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.
Alternatively, you can use our standalone uberjar [pinecone-client-0.2.1-all.jar](https://repo1.maven.org/maven2/io/pinecone/pinecone-client/0.2.1/pinecone-client-0.2.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.

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

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = 'io.pinecone'
version = '0.2.0' // [pc:VERSION_NEXT]
version = '0.2.1' // [pc:VERSION_NEXT]
description = 'The Pinecone.io Java Client'

sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -25,7 +25,7 @@ dependencies {
api "io.grpc:grpc-protobuf:${grpcVersion}"
api "io.grpc:grpc-stub:${grpcVersion}"
api "io.grpc:grpc-netty:${grpcVersion}"
runtime 'io.netty:netty-tcnative-boringssl-static:2.0.48.Final'
runtime 'io.netty:netty-tcnative-boringssl-static:2.0.50.Final'
implementation 'org.slf4j:slf4j-api:1.7.36'
compileOnly "org.apache.tomcat:annotations-api:6.0.53" // necessary for Java 9+

Expand Down Expand Up @@ -136,4 +136,4 @@ signing {
def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign publishing.publications.pineconeClientMaven
}
}
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.4</version> <!-- [pc:VERSION_NEXT] -->
<version>0.2.1</version> <!-- [pc:VERSION_NEXT] -->
</dependency>
<dependency> <!-- Add an slf4j binding like this if you want to see logs emitted by pinecone-client -->
<groupId>org.slf4j</groupId>
Expand Down
16 changes: 10 additions & 6 deletions src/main/resources/META-INF/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pinecone Software End User License Agreement (EULA)

Last Updated: December 31, 2020
Last Updated: March 13, 2022



Expand Down Expand Up @@ -29,12 +29,16 @@ BY DOWNLOADING, INSTALLING OR USING THE LICENSED SOFTWARE, YOU AGREE TO BE BOUN

Open-Source Code Included in Pinecone-io Java Client Library

Last Updated: April 26, 2021
Last Updated: March 13, 2022


Apache License 2.0

* Software: io.grpc:grpc-protobuf - Version 1.35.0 (https://search.maven.org/artifact/io.grpc/grpc-protobuf)
* Software: io.grpc:grpc-stub - Version 1.35.0 (https://search.maven.org/artifact/io.grpc/grpc-stub)
* Software: io.grpc:grpc-netty - Version 1.35.0 (https://search.maven.org/artifact/io.grpc/grpc-netty)
* Software: io.netty:netty-tcnative-boringssl-static - Version 2.0.35.Final (https://search.maven.org/artifact/io.netty/netty-tcnative-boringssl-static)
* Software: io.grpc:grpc-protobuf - Version 1.44.1 (https://search.maven.org/artifact/io.grpc/grpc-protobuf)
* Software: io.grpc:grpc-stub - Version 1.44.1 (https://search.maven.org/artifact/io.grpc/grpc-stub)
* Software: io.grpc:grpc-netty - Version 1.44.1 (https://search.maven.org/artifact/io.grpc/grpc-netty)
* Software: io.netty:netty-tcnative-boringssl-static - Version 2.0.50.Final (https://search.maven.org/artifact/io.netty/netty-tcnative-boringssl-static)

BSD 3-Clause "New" or "Revised" License

* Software: protoc-gen-openapiv2 - Version 2.8.0 (https://github.com/grpc-ecosystem/grpc-gateway/tree/master/protoc-gen-openapiv2)

0 comments on commit 6b71743

Please sign in to comment.