chore(release): v0.4.0

This commit is contained in:
MedzikUser 2022-06-29 15:21:55 +02:00
parent b5c8e34cba
commit ed9ad76529
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
5 changed files with 8 additions and 5 deletions

View File

@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header --> <!-- next-header -->
## [Unreleased] ## [Unreleased]
## [0.4.0] - 2022-06-29
### Features ### Features
- **sha**: Added HMAC Sha1, HMAC Sha256 and HMAC Sha512 - **sha**: Added HMAC Sha1, HMAC Sha256 and HMAC Sha512
@ -31,7 +33,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Sha1, Sha256, Sha512 hasher - Sha1, Sha256, Sha512 hasher
<!-- next-url --> <!-- next-url -->
[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.3.0...HEAD [Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/MedzikUser/imgurs/commits/v0.4.0
[0.3.0]: https://github.com/MedzikUser/imgurs/commits/v0.3.0 [0.3.0]: https://github.com/MedzikUser/imgurs/commits/v0.3.0
[0.2.1]: https://github.com/MedzikUser/imgurs/commits/v0.2.1 [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.2.0]: https://github.com/MedzikUser/imgurs/commits/v0.2.0

2
Cargo.lock generated
View File

@ -81,7 +81,7 @@ dependencies = [
[[package]] [[package]]
name = "crypto-utils" name = "crypto-utils"
version = "0.3.0" version = "0.4.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "crypto-utils" name = "crypto-utils"
version = "0.3.0" version = "0.4.0"
description = "Cryptography Utils for Rust" description = "Cryptography Utils for Rust"
authors = ["MedzikUser <nivua1fn@duck.com>"] authors = ["MedzikUser <nivua1fn@duck.com>"]
license = "MIT" license = "MIT"

View File

@ -18,7 +18,7 @@ your application, simply add it to your project's `Cargo.toml`.
```toml ```toml
[dependencies] [dependencies]
crypto-utils = "0.2.1" crypto-utils = "0.4.0"
``` ```
### How to use? ### How to use?

View File

@ -16,7 +16,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! crypto-utils = "0.3.0" //! crypto-utils = "0.4.0"
//! ``` //! ```
//! //!
//! ## How to use? //! ## How to use?