From e9b9b37c9de89ff27eafdec6b32890cc6e5b62ab Mon Sep 17 00:00:00 2001 From: Max Lambrecht Date: Wed, 7 Jul 2021 10:16:52 -0300 Subject: [PATCH] Prepare spiffe 0.2.0 (#11) Prepare 0.2.0 release Signed-off-by: Max Lambrecht --- CHANGELOG.md | 10 ++++++++-- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e53c2..37a5cb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,16 @@ +## 0.2.0 (July 6, 2021) + + * Strict SPIFFE ID parsing (#8) + * Method `validate_jwt_token` returns a `JwtSvid` parsed + from given token after validating it using then Workload API (#9) + ## 0.1.1 (June 18, 2021) - * Add method `validate_jwt_token` in the WorkloadApiClient. + * Add method `validate_jwt_token` in the WorkloadApiClient (#2). ## 0.1.0 (June 14, 2021) -Initial implementation of the library: +Initial implementation of the library (#1): * Workload API client with one-shot call methods * Certificate and PrivateKey types * X.509 SVID and bundle types diff --git a/Cargo.toml b/Cargo.toml index 7569b5a..d69e919 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "spiffe" # When releasing to crates.io: # - Update CHANGELOG.md. # - Create a new tag -version = "0.1.1" +version = "0.2.0" authors = ["Max Lambrecht "] description = "Rust client library implementation for SPIFFE" license = "Apache-2.0" diff --git a/README.md b/README.md index 9d045e0..c1dde6c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use `spiffe`, add this to your `Cargo.toml`: ```toml [dependencies] -spiffe = "0.1.1" +spiffe = "0.2.0" ``` ### Examples