diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b9f05f..6200e87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.2] - 2023-09-18 + ### Added - Cache for build jobs in CI @@ -87,7 +89,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `base58m` binary with support for encoding/decoding Monero base58 data with checksum support -[Unreleased]: https://github.com/monero-rs/base58m/compare/v1.0.1...HEAD +[Unreleased]: https://github.com/monero-rs/base58m/compare/v1.0.2...HEAD +[1.0.2]: https://github.com/monero-rs/base58m/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/monero-rs/base58m/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/monero-rs/base58m/compare/v0.2.2...v1.0.0 [0.2.2]: https://github.com/monero-rs/base58m/compare/v0.2.1...v0.2.2 diff --git a/Cargo.lock b/Cargo.lock index ede62c2..cf01477 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -86,7 +86,7 @@ dependencies = [ [[package]] name = "base58m" -version = "1.0.1" +version = "1.0.2" dependencies = [ "async-stream", "base58-monero", diff --git a/Cargo.toml b/Cargo.toml index d546cf9..bdfbb04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "base58m" -version = "1.0.1" +version = "1.0.2" authors = ["Monero Rust Contributors", "h4sh3d "] edition = "2021" homepage = "https://github.com/monero-rs/base58m"