diff --git a/Home.md b/Home.md index 38481c1..3b14d37 100644 --- a/Home.md +++ b/Home.md @@ -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 diff --git a/Installation.md b/Installation.md index fe848b8..aaf0452 100644 --- a/Installation.md +++ b/Installation.md @@ -12,16 +12,16 @@ The connector is published at Maven Central and may be included into your projec de.stklcode.jvault jvault-connector - 0.8.2 + 0.9.0 ``` ### 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" ```