From d299693a20e0ff75c7fec070ed3798a0dcf5ce8c Mon Sep 17 00:00:00 2001 From: h4sh3d Date: Mon, 27 Sep 2021 17:29:53 +0200 Subject: [PATCH] Prepare 0.3.1 release This release is mostly cosmetic and only bump hex dependency. --- CHANGELOG.md | 14 +++++++++++++- Cargo.toml | 4 ++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03aabac..e0bf3d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] N/A +## [0.3.1] - 2021-09-27 +### Changed +- CI migrated to GitHub Actions with more tests and build +- `hex` dependency bumped from `0.3` to `0.4` ([#2](https://github.com/monero-rs/base58-monero/pull/2)) + +### Added +- Minimum Stable Rust Version of `1.45.2` +- Changelog tracking past and futur release +- Benchmarks and results in README ([#6](https://github.com/monero-rs/base58-monero/pull/6)) +- Code coverage ([#7](https://github.com/monero-rs/base58-monero/pull/7)) + ## [0.3.0] - 2021-04-09 ### Changed - Update to `tokio` version `"1"` ([#1](https://github.com/monero-rs/base58-monero/pull/1)) @@ -34,7 +45,8 @@ N/A ### Added - Initial release of the library -[Unreleased]: https://github.com/monero-rs/base58-monero/compare/v0.3.0...HEAD +[Unreleased]: https://github.com/monero-rs/base58-monero/compare/v0.3.1...HEAD +[0.3.1]: https://github.com/monero-rs/base58-monero/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/monero-rs/base58-monero/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.com/monero-rs/base58-monero/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/monero-rs/base58-monero/compare/v0.1.1...v0.2.0 diff --git a/Cargo.toml b/Cargo.toml index 10bd324..dbe9319 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,8 +2,8 @@ name = "base58-monero" description = "Library with support for encoding/decoding Monero base58 strings." keywords = ["monero", "base58", "base58-check"] -version = "0.3.0" -authors = ["h4sh3d "] +version = "0.3.1" +authors = ["Monero Rust Contributors", "h4sh3d "] license = "MIT" documentation = "https://docs.rs/base58-monero" homepage = "https://github.com/monero-rs/base58-monero"