From 2e7ed8dfd07cd91582fd4c3f45983c738177d8c9 Mon Sep 17 00:00:00 2001 From: Steve Perkins Date: Wed, 11 Dec 2019 14:36:59 -0500 Subject: [PATCH] Updates documentation following merge of PR #199 --- README.md | 8 +++++--- build.gradle | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 71472118..1d6a70bd 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ The driver is available from Maven Central, for all modern Java build systems. Gradle: ``` dependencies { - implementation 'com.bettercloud:vault-java-driver:5.0.0' + implementation 'com.bettercloud:vault-java-driver:5.1.0' } ``` @@ -46,7 +46,7 @@ Maven: com.bettercloud vault-java-driver - 5.0.0 + 5.1.0 ``` @@ -271,8 +271,10 @@ Note that changes to the major version (i.e. the first number) represent possibl may require modifications in your code to migrate. Changes to the minor version (i.e. the second number) should represent non-breaking changes. The third number represents any very minor bugfix patches. -* **5.1.1 (IN PROGRESS)**: This release contains the following updates: +* **5.1.0 (IN PROGRESS)**: This release contains the following updates: * Supports path prefixes when using K/V engine V2. [(PR #189)](https://github.com/BetterCloud/vault-java-driver/pull/189) + * Support all options for the createToken operation. [(PR # 199)](https://github.com/BetterCloud/vault-java-driver/pull/199) + * **5.0.0**: This release contains the following updates: * Changes the retry behavior, to no longer attempt retries on 4xx response codes (for which retries generally won't succeed anyway). This is the only (mildly) breaking change in this release, necessitating a major version bump. [(PR #176)](https://github.com/BetterCloud/vault-java-driver/pull/176) diff --git a/build.gradle b/build.gradle index 065acc56..1bcbd164 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ apply plugin: 'checkstyle' group 'com.bettercloud' archivesBaseName = 'vault-java-driver' -version '5.0.0' +version '5.1.0-SNAPSHOT' ext.isReleaseVersion = !version.endsWith('SNAPSHOT') // This project is actually limited to Java 8 compatibility. See below.