Skip to content

Commit 1b112bc

Browse files
committed
add version pragmas to aid in releases
1 parent aae1c17 commit 1b112bc

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,15 @@ Maven:
3232
</dependency>
3333
```
3434

35+
[comment]: <> (^ [pc:LATEST_RELEASE_VERSION])
36+
3537
Gradle:
3638
```
3739
implementation "io.pinecone:pinecone-client:0.1.2"
3840
```
3941

42+
[comment]: <> ([pc:LATEST_RELEASE_VERSION])
43+
4044
### Uberjar
4145
*pinecone-client-${version}-all.jar* 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.
4246

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = 'io.pinecone'
11-
version = '0.1.3'
11+
version = '0.1.3' // [pc:NEXT_VERSION]
1212
description = 'The Pinecone.io Java Client'
1313

1414
sourceCompatibility = 1.8

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.3</version>
24+
<version>0.1.3</version> <!-- [pc:NEXT_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)