Skip to content

Commit

Permalink
Updates documentation following merge of PR #199
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-perkins committed Dec 11, 2019
1 parent 4d4a863 commit 2e7ed8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand All @@ -46,7 +46,7 @@ Maven:
<dependency>
<groupId>com.bettercloud</groupId>
<artifactId>vault-java-driver</artifactId>
<version>5.0.0</version>
<version>5.1.0</version>
</dependency>
```

Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2e7ed8d

Please sign in to comment.