From 7ef23c602a33173ddcb96fd84624a1411df1556e Mon Sep 17 00:00:00 2001 From: MedzikUser Date: Sat, 18 Jun 2022 11:26:39 +0200 Subject: [PATCH] chore(release): v0.2.1 --- CHANGELOG.md | 9 ++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0864f8..683219b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.2.1] - 2022-06-18 +### Added +- Examples +### Changed +- update rust crate jsonwebtoken to 8.1.1 + ## [0.2.0] - 2022-06-11 ### Added - Json Web Token @@ -18,6 +24,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Sha1, Sha256, Sha512 hasher -[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.2.1...HEAD +[0.2.1]: https://github.com/MedzikUser/imgurs/commits/v0.2.1 [0.2.0]: https://github.com/MedzikUser/imgurs/commits/v0.2.0 [0.1.0]: https://github.com/MedzikUser/imgurs/commits/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index 4193671..f1de5ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -81,7 +81,7 @@ dependencies = [ [[package]] name = "crypto-utils" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 2dd03ee..e25de62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "crypto-utils" +version = "0.2.1" description = "Cryptography Utils for Rust" authors = ["MedzikUser "] license = "MIT" @@ -7,7 +8,6 @@ keywords = ["crypto", "sha"] categories = ["cryptography"] homepage = "https://github.com/MedzikUser/rust-crypto-utils" repository = "https://github.com/MedzikUser/rust-crypto-utils.git" -version = "0.2.0" edition = "2021" [features] diff --git a/README.md b/README.md index b21c30c..68ebb12 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ your application, simply add it to your project's `Cargo.toml`. ```toml [dependencies] -crypto-utils = "0.2.0" +crypto-utils = "0.2.1" ``` ### How to use? diff --git a/src/lib.rs b/src/lib.rs index be14938..449cf78 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ //! //! ```toml //! [dependencies] -//! crypto-utils = "0.2.0" +//! crypto-utils = "0.2.1" //! ``` //! //! ## How to use?