From 6edbd6a6a4a0d467dd2ae23617c28ed0f93d9681 Mon Sep 17 00:00:00 2001 From: Michael McAllister Date: Wed, 15 Oct 2025 09:52:49 -0700 Subject: [PATCH 1/2] bumping version --- 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 c5885fdbc1982b19e8ec6cba97650fac36bd3066 Mon Sep 17 00:00:00 2001 From: Michael McAllister Date: Thu, 16 Oct 2025 12:54:45 -0700 Subject: [PATCH 2/2] updating gradle --- README.md | 12 ++++++------ build.gradle | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3973771..70b6e20 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.13.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.13.0" ``` ### Sbt ```sbt -libraryDependencies += "com.vertexvis" % "api-client-java" % "0.12.0" +libraryDependencies += "com.vertexvis" % "api-client-java" % "0.13.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.13.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.13.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.13.0-SNAPSHOT' } ``` diff --git a/build.gradle b/build.gradle index 9cfe9c3..6fc0e2e 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.13.0' def isSnapshot = project.hasProperty('isSnapshot') && project.isSnapshot.toBoolean() version = isSnapshot ? "${projectVersion}-SNAPSHOT" : projectVersion