diff --git a/CHANGELOG.md b/CHANGELOG.md index e7cab16..2ee4eff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.7.2] - 202-03-20 + +### Added + +- Support for initail vault setup + +### Fixed + +- Bug to fail by compiling with disabled default features and native-tls + ## [0.7.1] - 202-03-16 diff --git a/Cargo.toml b/Cargo.toml index f80d095..6e37817 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaultrs" -version = "0.7.1" +version = "0.7.2" authors = ["Joshua Gilman "] description = "An asynchronous Rust client library for the Hashicorp Vault API." license = "MIT" diff --git a/vaultrs-login/Cargo.toml b/vaultrs-login/Cargo.toml index 08ddc4c..3d1fced 100644 --- a/vaultrs-login/Cargo.toml +++ b/vaultrs-login/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaultrs-login" -version = "0.2.0" +version = "0.2.1" authors = ["Joshua Gilman "] description = "Adds login support for Vault clients from vaultrs." license = "MIT" @@ -31,7 +31,7 @@ tiny_http = { version = "0.12.0", optional = true } tokio = { version = "1.26.0", optional = true } tracing = "0.1.37" url = "2.3.1" -vaultrs = { version = "0.7.1", path = ".." } +vaultrs = { version = "0.7.2", path = ".." } [dev-dependencies] reqwest = "0.11.15"