From 93d80ae0cfc703a7975c6623713726385629ce14 Mon Sep 17 00:00:00 2001 From: Anders Sjoblom Date: Thu, 30 Oct 2025 20:34:23 -0400 Subject: [PATCH 1/2] version bump for new batch API --- README.md | 12 ++++++------ build.gradle | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a681283..3973771 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The client can be used with Java 1.8+ and pulled into Maven or Gradle projects. com.vertexvis api-client-java - 0.11.0 + 0.12.0 compile ``` @@ -25,13 +25,13 @@ The client can be used with Java 1.8+ and pulled into Maven or Gradle projects. ### Gradle ```groovy -compile "com.vertexvis:api-client-java:0.11.0" +compile "com.vertexvis:api-client-java:0.12.0" ``` ### Sbt ```sbt -libraryDependencies += "com.vertexvis" % "api-client-java" % "0.11.0" +libraryDependencies += "com.vertexvis" % "api-client-java" % "0.12.0" ``` ### Others @@ -44,7 +44,7 @@ mvn clean package Then manually install the following JARs. -- `target/api-client-java-0.11.0.jar` +- `target/api-client-java-0.12.0.jar` - `target/lib/*.jar` ## Usage @@ -104,7 +104,7 @@ To consume published snapshot versions in other projects, add the snapshot repos com.vertexvis api-client-java - 0.11.0-SNAPSHOT + 0.12.0-SNAPSHOT ``` @@ -119,7 +119,7 @@ repositories { } dependencies { - implementation 'com.vertexvis:api-client-java:0.11.0-SNAPSHOT' + implementation 'com.vertexvis:api-client-java:0.12.0-SNAPSHOT' } ``` diff --git a/build.gradle b/build.gradle index daa9f22..9cfe9c3 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { id "io.github.gradle-nexus.publish-plugin" } -def projectVersion = '0.11.0' +def projectVersion = '0.12.0' def isSnapshot = project.hasProperty('isSnapshot') && project.isSnapshot.toBoolean() version = isSnapshot ? "${projectVersion}-SNAPSHOT" : projectVersion From 9adcc616f29ac63d312bd79075abbb25dd476015 Mon Sep 17 00:00:00 2001 From: Anders Sjoblom Date: Thu, 30 Oct 2025 20:40:06 -0400 Subject: [PATCH 2/2] Bump the version to be on up on the last PR set to merge --- README.md | 12 ++++++------ build.gradle | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3973771..f9e8a88 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The client can be used with Java 1.8+ and pulled into Maven or Gradle projects. com.vertexvis api-client-java - 0.12.0 + 0.14.0 compile ``` @@ -25,13 +25,13 @@ The client can be used with Java 1.8+ and pulled into Maven or Gradle projects. ### Gradle ```groovy -compile "com.vertexvis:api-client-java:0.12.0" +compile "com.vertexvis:api-client-java:0.14.0" ``` ### Sbt ```sbt -libraryDependencies += "com.vertexvis" % "api-client-java" % "0.12.0" +libraryDependencies += "com.vertexvis" % "api-client-java" % "0.14.0" ``` ### Others @@ -44,7 +44,7 @@ mvn clean package Then manually install the following JARs. -- `target/api-client-java-0.12.0.jar` +- `target/api-client-java-0.14.0.jar` - `target/lib/*.jar` ## Usage @@ -104,7 +104,7 @@ To consume published snapshot versions in other projects, add the snapshot repos com.vertexvis api-client-java - 0.12.0-SNAPSHOT + 0.14.0-SNAPSHOT ``` @@ -119,7 +119,7 @@ repositories { } dependencies { - implementation 'com.vertexvis:api-client-java:0.12.0-SNAPSHOT' + implementation 'com.vertexvis:api-client-java:0.14.0-SNAPSHOT' } ``` diff --git a/build.gradle b/build.gradle index 9cfe9c3..b4d8195 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { id "io.github.gradle-nexus.publish-plugin" } -def projectVersion = '0.12.0' +def projectVersion = '0.14.0' def isSnapshot = project.hasProperty('isSnapshot') && project.isSnapshot.toBoolean() version = isSnapshot ? "${projectVersion}-SNAPSHOT" : projectVersion