Skip to content

Commit 6b71743

Browse files
author
Adam Gutglick
committed
Updates license, bump some dependencies and fix local build in previous release
1 parent b516757 commit 6b71743

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

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.2.0</version>
18+
<version>0.2.1</version>
1919
</dependency>
2020
```
2121

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

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

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

31-
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.
31+
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.
3232

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

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = 'io.pinecone'
12-
version = '0.2.0' // [pc:VERSION_NEXT]
12+
version = '0.2.1' // [pc:VERSION_NEXT]
1313
description = 'The Pinecone.io Java Client'
1414

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

@@ -136,4 +136,4 @@ signing {
136136
def signingPassword = findProperty("signingPassword")
137137
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
138138
sign publishing.publications.pineconeClientMaven
139-
}
139+
}

examples/java-basic-mvn/pom.xml

Lines changed: 1 addition & 1 deletion
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.4</version> <!-- [pc:VERSION_NEXT] -->
24+
<version>0.2.1</version> <!-- [pc:VERSION_NEXT] -->
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>

src/main/resources/META-INF/LICENSE.txt

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pinecone Software End User License Agreement (EULA)
22

3-
Last Updated: December 31, 2020
3+
Last Updated: March 13, 2022
44

55

66

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

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

32-
Last Updated: April 26, 2021
32+
Last Updated: March 13, 2022
3333

3434

3535
Apache License 2.0
3636

37-
* Software: io.grpc:grpc-protobuf - Version 1.35.0 (https://search.maven.org/artifact/io.grpc/grpc-protobuf)
38-
* Software: io.grpc:grpc-stub - Version 1.35.0 (https://search.maven.org/artifact/io.grpc/grpc-stub)
39-
* Software: io.grpc:grpc-netty - Version 1.35.0 (https://search.maven.org/artifact/io.grpc/grpc-netty)
40-
* Software: io.netty:netty-tcnative-boringssl-static - Version 2.0.35.Final (https://search.maven.org/artifact/io.netty/netty-tcnative-boringssl-static)
37+
* Software: io.grpc:grpc-protobuf - Version 1.44.1 (https://search.maven.org/artifact/io.grpc/grpc-protobuf)
38+
* Software: io.grpc:grpc-stub - Version 1.44.1 (https://search.maven.org/artifact/io.grpc/grpc-stub)
39+
* Software: io.grpc:grpc-netty - Version 1.44.1 (https://search.maven.org/artifact/io.grpc/grpc-netty)
40+
* Software: io.netty:netty-tcnative-boringssl-static - Version 2.0.50.Final (https://search.maven.org/artifact/io.netty/netty-tcnative-boringssl-static)
41+
42+
BSD 3-Clause "New" or "Revised" License
43+
44+
* Software: protoc-gen-openapiv2 - Version 2.8.0 (https://github.com/grpc-ecosystem/grpc-gateway/tree/master/protoc-gen-openapiv2)

0 commit comments

Comments
 (0)