update versions to 0.9.4

Stefan Kalscheuer 2021-06-06 12:36:07 +02:00
parent e426ad82b3
commit 245a62a457
2 changed files with 4 additions and 4 deletions

@ -27,4 +27,4 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject
* SQL secret handling * SQL secret handling
* KV v1 and v2 support * KV v1 and v2 support
* Connector Factory with builder pattern * Connector Factory with builder pattern
* Tested against Vault 1.7.0 * Tested against Vault 1.7.2

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