diff --git a/README.md b/README.md
index 623a736..e585d53 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.17.0
+ 0.18.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.17.0"
+compile "com.vertexvis:api-client-java:0.18.0"
```
### Sbt
```sbt
-libraryDependencies += "com.vertexvis" % "api-client-java" % "0.17.0"
+libraryDependencies += "com.vertexvis" % "api-client-java" % "0.18.0"
```
### Others
@@ -44,7 +44,7 @@ mvn clean package
Then manually install the following JARs.
-- `target/api-client-java-0.17.0.jar`
+- `target/api-client-java-0.18.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.17.0-SNAPSHOT
+ 0.18.0-SNAPSHOT
```
@@ -119,7 +119,7 @@ repositories {
}
dependencies {
- implementation 'com.vertexvis:api-client-java:0.17.0-SNAPSHOT'
+ implementation 'com.vertexvis:api-client-java:0.18.0-SNAPSHOT'
}
```
diff --git a/build.gradle b/build.gradle
index 51dc9d3..57cfe83 100644
--- a/build.gradle
+++ b/build.gradle
@@ -3,7 +3,7 @@ plugins {
id "io.github.gradle-nexus.publish-plugin"
}
-def projectVersion = '0.17.0'
+def projectVersion = '0.18.0'
def isSnapshot = project.hasProperty('isSnapshot') && project.isSnapshot.toBoolean()
version = isSnapshot ? "${projectVersion}-SNAPSHOT" : projectVersion