Skip to content

Commit b4533c5

Browse files
Updates README. Bumps version to 5.0.0-SNAPSHOT.
1 parent 9419a3e commit b4533c5

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The driver is available from Maven Central, for all modern Java build systems.
3434
Gradle:
3535
```
3636
dependencies {
37-
implementation 'com.bettercloud:vault-java-driver:4.1.0'
37+
implementation 'com.bettercloud:vault-java-driver:5.0.0'
3838
}
3939
```
4040

@@ -43,7 +43,7 @@ Maven:
4343
<dependency>
4444
<groupId>com.bettercloud</groupId>
4545
<artifactId>vault-java-driver</artifactId>
46-
<version>4.1.0</version>
46+
<version>5.0.0</version>
4747
</dependency>
4848
```
4949

@@ -252,9 +252,14 @@ Note that changes to the major version (i.e. the first number) represent possibl
252252
may require modifications in your code to migrate. Changes to the minor version (i.e. the second number)
253253
should represent non-breaking changes. The third number represents any very minor bugfix patches.
254254

255-
* **4.2.0 (IN PROGRESS)**: This release contains the following updates:
255+
* **5.0.0 (IN PROGRESS)**: This release contains the following updates:
256+
* Changes the retry behavior, to no longer attempt retries on 4xx response codes (for which retries generally won't succeed anyway). This
257+
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)
256258
* Implements support for the Database secret engine. [(PR #175)](https://github.com/BetterCloud/vault-java-driver/pull/175)
259+
* Makes the "x-vault-token" header optional, to allow use of Vault Agent. [(PR #184)](https://github.com/BetterCloud/vault-java-driver/pull/184)
257260
* Removes stray uses of `System.out.println` in favor of `java.util.logging`. [(PR #178)](https://github.com/BetterCloud/vault-java-driver/pull/178)
261+
* Adds the enum constant `MountType.KEY_VALUE_V2`. [(PR #182)](https://github.com/BetterCloud/vault-java-driver/pull/182)
262+
258263
* **4.1.0**: This release contains the following updates:
259264
* Support for JWT authentication, for use by Kubernetes and other JWT-based authentication providers. [(PR #164)](https://github.com/BetterCloud/vault-java-driver/pull/164)
260265
* Updates the lease revoke method, to support changes in the underlying Vault API. [(PR #163)](https://github.com/BetterCloud/vault-java-driver/pull/163)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44

55
group 'com.bettercloud'
66
archivesBaseName = 'vault-java-driver'
7-
version '4.2.0-SNAPSHOT'
7+
version '5.0.0-SNAPSHOT'
88
ext.isReleaseVersion = !version.endsWith('SNAPSHOT')
99

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

0 commit comments

Comments
 (0)