Skip to content

Commit

Permalink
Merge pull request #110 from Nemo157/version-bump
Browse files Browse the repository at this point in the history
Prepare for 0.5.0 release
  • Loading branch information
Nemo157 authored May 23, 2023
2 parents 0edad16 + 6216ebe commit 8c0271d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.5.0 - 2023-05-23

* Breaking change: make encoding onto resizable buffers not clear them, instead appending onto any existing data
* Breaking change: rename `into` methods to `onto` to allow for implementing `Into` in the future (or a similar inherent method)
* Add new `cb58` feature to support injecting and verifying that checksum (by @Zondax)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bs58"
version = "0.4.0"
version = "0.5.0"
description = "Another Base58 codec implementation."
repository = "https://github.com/Nullus157/bs58-rs"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ name = "bs58"
path = "src/main.rs"

[dependencies]
bs58 = { version = "0.4.0", path = ".." }
bs58 = { version = "0.5.0", path = ".." }
structopt = { version = "0.3.21", default-features = false, features = ["color"] }
anyhow = { version = "1.0.35", default-features = false, features = ["std"] }

0 comments on commit 8c0271d

Please sign in to comment.