Update versions to 0.9.0

Stefan Kalscheuer 2020-04-26 17:17:12 +02:00
parent 2f23f57548
commit 3a03c1f387
2 changed files with 6 additions and 5 deletions

@ -15,8 +15,8 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject
* AppRole (register and authenticate)
* AppID (register and authenticate) [_deprecated_]
* Tokens
* Creation and lookup of tokens
* TokenBuilder for speaking creation of complex configuraitons
* Creation and lookup of tokens and token roles
* TokenBuilder for speaking creation of complex configurations
* Secrets
* Read secrets
* Write secrets
@ -25,5 +25,6 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject
* Renew/revoke leases
* Raw secret content or JSON decoding
* SQL secret handling
* KV v1 and v2 support
* Connector Factory with builder pattern
* Tested against Vault 1.4.0

@ -12,16 +12,16 @@ The connector is published at Maven Central and may be included into your projec
<dependency>
<groupId>de.stklcode.jvault</groupId>
<artifactId>jvault-connector</artifactId>
<version>0.8.2</version>
<version>0.9.0</version>
</dependency>
```
### Gradle Dependency
```groovy
compile group: 'de.stklcode.jvault', name: 'jvault-connector', version: '0.8.2'
compile group: 'de.stklcode.jvault', name: 'jvault-connector', version: '0.9.0'
```
### SBT Dependency
```
libraryDependencies += "de.stklcode.jvault" % "jvault-connector" % "0.8.2"
libraryDependencies += "de.stklcode.jvault" % "jvault-connector" % "0.9.0"
```