Skip to content

Commit 2e7ed8d

Browse files
committed
Updates documentation following merge of PR #199
1 parent 4d4a863 commit 2e7ed8d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The driver is available from Maven Central, for all modern Java build systems.
3737
Gradle:
3838
```
3939
dependencies {
40-
implementation 'com.bettercloud:vault-java-driver:5.0.0'
40+
implementation 'com.bettercloud:vault-java-driver:5.1.0'
4141
}
4242
```
4343

@@ -46,7 +46,7 @@ Maven:
4646
<dependency>
4747
<groupId>com.bettercloud</groupId>
4848
<artifactId>vault-java-driver</artifactId>
49-
<version>5.0.0</version>
49+
<version>5.1.0</version>
5050
</dependency>
5151
```
5252

@@ -271,8 +271,10 @@ Note that changes to the major version (i.e. the first number) represent possibl
271271
may require modifications in your code to migrate. Changes to the minor version (i.e. the second number)
272272
should represent non-breaking changes. The third number represents any very minor bugfix patches.
273273

274-
* **5.1.1 (IN PROGRESS)**: This release contains the following updates:
274+
* **5.1.0 (IN PROGRESS)**: This release contains the following updates:
275275
* Supports path prefixes when using K/V engine V2. [(PR #189)](https://github.com/BetterCloud/vault-java-driver/pull/189)
276+
* Support all options for the createToken operation. [(PR # 199)](https://github.com/BetterCloud/vault-java-driver/pull/199)
277+
276278
* **5.0.0**: This release contains the following updates:
277279
* Changes the retry behavior, to no longer attempt retries on 4xx response codes (for which retries generally won't succeed anyway). This
278280
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)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'checkstyle'
55

66
group 'com.bettercloud'
77
archivesBaseName = 'vault-java-driver'
8-
version '5.0.0'
8+
version '5.1.0-SNAPSHOT'
99
ext.isReleaseVersion = !version.endsWith('SNAPSHOT')
1010

1111
// This project is actually limited to Java 8 compatibility. See below.

0 commit comments

Comments
 (0)