Skip to content

Commit

Permalink
feat: release 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
stormshield-gt committed Feb 21, 2025
1 parent e196d37 commit a506076
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 8 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,25 @@ and this project adheres to

## [Unreleased]

## [0.7.3] - 2024-03-20
## [0.7.4] - 2025-02-21

### Added

- Add disable sys auth
- Add sys remount endpoint
- Add missing parameters to generate intermediate request

### Changed

- The internal testsuite use now testcontainers instead of dockertest
- Improve the testing speed by regrouping integration tests
- Reduce log verbosity on some trace

### Fixed

- Fix the readme example compilation

## [0.7.3] - 2024-11-08

### Added

Expand Down Expand Up @@ -189,7 +207,8 @@ and this project adheres to

- Initial release

[unreleased]: https://github.com/jmgilman/vaultrs/compare/v0.7.3...HEAD
[unreleased]: https://github.com/jmgilman/vaultrs/compare/v0.7.4...HEAD
[0.7.4]: https://github.com/jmgilman/vaultrs/compare/v0.7.3...v0.7.4
[0.7.3]: https://github.com/jmgilman/vaultrs/compare/v0.7.2...v0.7.3
[0.7.2]: https://github.com/jmgilman/vaultrs/compare/v0.7.1...v0.7.2
[0.7.1]: https://github.com/jmgilman/vaultrs/compare/v0.7.0...v0.7.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vaultrs"
version = "0.7.3"
version = "0.7.4"
authors = ["Joshua Gilman <joshuagilman@gmail.com>"]
description = "An asynchronous Rust client library for the Hashicorp Vault API."
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ Then, add `vaultrs` as a dependency to your cargo.toml:

```toml
[dependencies]
vaultrs = "0.7.3"
vaultrs = "0.7.4"
```

2. To use [rust-native-tls](https://github.com/sfackler/rust-native-tls), which
builds on your platform-specific TLS implementation, specify:

```toml
[dependencies]
vaultrs = { version = "0.7.3", default-features = false, features = [ "native-tls" ] }
vaultrs = { version = "0.7.4", default-features = false, features = [ "native-tls" ] }
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions vaultrs-login/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vaultrs-login"
version = "0.2.2"
version = "0.2.3"
authors = ["Joshua Gilman <joshuagilman@gmail.com>"]
description = "Adds login support for Vault clients from vaultrs."
license = "MIT"
Expand Down Expand Up @@ -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.3", path = ".." }
vaultrs = { version = "0.7.4", path = ".." }

[dev-dependencies]
reqwest = "0.11.15"
Expand Down
2 changes: 1 addition & 1 deletion vaultrs-login/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Add `vaultrs-login` as a dependency to your cargo.toml:

```toml
[dependencies]
vaultrs-login = "0.2.2"
vaultrs-login = "0.2.3"
```

## Usage
Expand Down

0 comments on commit a506076

Please sign in to comment.