Skip to content

Commit 758db43

Browse files
authored
Merge pull request #28 from monero-rs/release/0.2.1
Release version 0.2.1
2 parents e048edf + f966f5e commit 758db43

2 files changed

Lines changed: 27 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,58 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) as described in [The Cargo Book](https://doc.rust-lang.org/cargo/reference/manifest.html#the-version-field).
67

78
## [Unreleased]
9+
10+
## [0.2.1] - 2021-10-13
11+
812
### Added
13+
914
- Add test jobs for basic encode/decode with and without check mode
1015
- New automated release system based on monero-rs/workflows
1116
- Documentation in README
1217

1318
### Changed
19+
1420
- Update `base58-monero` to `0.3.1`
1521
- Update `futures-util` to `0.3.17`
1622
- Update `async-stream` to `0.3.2`
1723

1824
## [0.2.0] - 2021-04-30
25+
1926
### Added
27+
2028
- Add `dependabot` and switch to GitHub Actions for the CI
2129

2230
### Changed
31+
2332
- Update `base58-monero` to `0.3.0`
2433
- Update `tokio` to `1`
2534
- Rename project from `base58m-rs` to `base58m`
2635
- Improve `Error` implementation
2736
- Improve documentation
2837

2938
### Fixed
39+
3040
- Clap now uses the `crate_version!()` macro to display the binary version
3141

3242
## [0.1.1] - 2020-01-16
43+
3344
### Changed
45+
3446
- Documentation and file tracking for crates.io releases
3547

3648
## [0.1.0] - 2020-01-09
49+
3750
### Added
51+
3852
- `base58m` binary with support for encoding/decoding Monero base58 data with checksum support
3953

40-
[Unreleased]: https://github.com/monero-rs/base58m/compare/v0.2.0...HEAD
54+
[Unreleased]: https://github.com/monero-rs/base58m/compare/v0.2.1...HEAD
55+
[0.2.1]: https://github.com/monero-rs/base58m/compare/v0.2.0...v0.2.1
4156
[0.2.0]: https://github.com/monero-rs/base58m/compare/v0.1.1...v0.2.0
4257
[0.1.1]: https://github.com/monero-rs/base58m/compare/v0.1.0...v0.1.1
4358
[0.1.0]: https://github.com/monero-rs/base58m/compare/1909d92fd48441c88e758c00f18c5aad23b0ac39...v0.1.0

Cargo.toml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
[package]
22
name = "base58m"
3-
description = "base64-like binary with support for encoding/decoding Monero base58 strings."
4-
keywords = ["binary", "monero", "base58", "base58-check"]
5-
version = "0.2.0"
6-
authors = ["h4sh3d <h4sh3d@protonmail.com>"]
7-
license = "MIT"
3+
version = "0.2.1"
4+
authors = [ "h4sh3d <h4sh3d@protonmail.com>" ]
5+
edition = "2018"
86
homepage = "https://github.com/monero-rs/base58m"
9-
repository = "https://github.com/monero-rs/base58m"
10-
readme = "README.md"
117
include = [
128
"src/*",
139
"README.md",
1410
"CHANGELOG.md",
1511
"LICENSE",
1612
]
17-
18-
edition = "2018"
13+
keywords = [ "binary", "monero", "base58", "base58-check" ]
14+
license = "MIT"
15+
readme = "README.md"
16+
repository = "https://github.com/monero-rs/base58m"
17+
description = "base64-like binary with support for encoding/decoding Monero base58 strings."
1918

2019
[dependencies]
21-
clap = "2.33.0"
20+
async-stream = "0.3.2"
2221
base58-monero = "0.3.1"
23-
tokio = { version = "1", features = ["fs", "rt", "rt-multi-thread", "macros", "io-std", "io-util"] }
22+
clap = "2.33.0"
2423
futures-util = "0.3.17"
25-
async-stream = "0.3.2"
2624
thiserror = "1"
25+
tokio = { version = "1", features = [ "fs", "rt", "rt-multi-thread", "macros", "io-std", "io-util" ] }

0 commit comments

Comments
 (0)