Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release spiffe-v0.6.0 #98

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions spiffe/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.6.0] - 2024-09-11

- Update Rust Edition to 2021 (#82)
- Enhance Usability with Core Type Re-exports (#83)

## [0.5.0] - 2024-03-07

### Dependencies updates
Expand Down
2 changes: 1 addition & 1 deletion spiffe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "spiffe"
# When releasing to crates.io:
# - Update CHANGELOG.md.
# - Create a new tag
version = "0.5.0"
version = "0.6.0"
edition = "2021"
authors = ["Max Lambrecht <[email protected]>"]
description = "Rust client library implementation for SPIFFE"
Expand Down
2 changes: 1 addition & 1 deletion spiffe/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ client (`workload-api`) by default:

```toml
[dependencies]
spiffe = "0.5.0"
spiffe = "0.6.0"
```

## Examples of Usage
Expand Down
2 changes: 1 addition & 1 deletion spire-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["cryptography"]
keywords = ["SPIFFE", "SPIRE"]

[dependencies]
spiffe = { version = "0.5.0", path = "../spiffe", default-features = false, features = ["spiffe-types"] }
spiffe = { version = "0.6.0", path = "../spiffe", default-features = false, features = ["spiffe-types"] }
bytes = { version = "1", features = ["serde"] }
tonic = { version = "0.11", default-features = false, features = ["prost", "codegen", "transport"]}
prost = { version = "0.12"}
Expand Down
Loading