diff --git a/spiffe/CHANGELOG.md b/spiffe/CHANGELOG.md index b823561..53f022e 100644 --- a/spiffe/CHANGELOG.md +++ b/spiffe/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.5.0] - 2024-03-07 + +### Dependencies updates + +- Updated `prost`, `prost-types`, and `prost-build` to "0.12" (#73) +- Updated `tonic` and `tonic-build` to "0.11" (#73) +- Updated `x509-parser` to "0.16" (#73) + ## [0.4.0] - 2023-08-23 ### Added diff --git a/spiffe/Cargo.toml b/spiffe/Cargo.toml index b443d34..9ba89a8 100644 --- a/spiffe/Cargo.toml +++ b/spiffe/Cargo.toml @@ -4,7 +4,7 @@ name = "spiffe" # When releasing to crates.io: # - Update CHANGELOG.md. # - Create a new tag -version = "0.4.0" +version = "0.5.0" authors = ["Max Lambrecht "] description = "Rust client library implementation for SPIFFE" license = "Apache-2.0" diff --git a/spiffe/README.md b/spiffe/README.md index a677a20..a1ec57b 100644 --- a/spiffe/README.md +++ b/spiffe/README.md @@ -14,7 +14,7 @@ client (`workload-api`) by default: ```toml [dependencies] -spiffe = "0.4.0" +spiffe = "0.5.0" ``` ## Examples of Usage diff --git a/spire-api/CHANGELOG.md b/spire-api/CHANGELOG.md index b73261b..031a164 100644 --- a/spire-api/CHANGELOG.md +++ b/spire-api/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.0] - 2024-03-07 + +### Dependencies updates + +- Updated `prost`, `prost-types`, and `prost-build` to "0.12" (#73) +- Updated `tonic` and `tonic-build` to "0.11" (#73) + ## [0.1.0] - 2023-09-03 ### Added diff --git a/spire-api/Cargo.toml b/spire-api/Cargo.toml index a676c4d..ebc6218 100644 --- a/spire-api/Cargo.toml +++ b/spire-api/Cargo.toml @@ -4,7 +4,7 @@ name = "spire-api" # When releasing to crates.io: # - Update CHANGELOG.md. # - Create a new tag -version = "0.1.0" +version = "0.2.0" authors = ["Max Lambrecht "] description = "Rust library for the SPIRE APIs" license = "Apache-2.0" @@ -15,7 +15,7 @@ categories = ["cryptography"] keywords = ["SPIFFE", "SPIRE"] [dependencies] -spiffe = { version = "0.4.0", path = "../spiffe", default-features = false, features = ["spiffe-types"] } +spiffe = { version = "0.5.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"} diff --git a/spire-api/README.md b/spire-api/README.md index 22e4923..0a90184 100644 --- a/spire-api/README.md +++ b/spire-api/README.md @@ -14,7 +14,7 @@ Include this line in your `Cargo.toml`: ```toml [dependencies] -spire-api = "0.1.0" +spire-api = "0.2.0" ``` ## Usage