units: Bump version number to 0.1.1
We just did a minor bug fix to error code in the `amounts` module. This change did not effect the public API but improved the display of two error types from that module. In preparation for doing a point release bump the version number and add a changelog entry.
This commit is contained in:
parent
a2b019f823
commit
e06ebd69e7
|
@ -92,7 +92,7 @@ version = "0.1.2"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitcoin-units"
|
name = "bitcoin-units"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitcoin-internals",
|
"bitcoin-internals",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
|
@ -91,7 +91,7 @@ version = "0.1.2"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitcoin-units"
|
name = "bitcoin-units"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitcoin-internals",
|
"bitcoin-internals",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
# 0.1.1 - 2024-04-04
|
||||||
|
|
||||||
|
* Enable "alloc" feature for `internals` dependency - enables caching
|
||||||
|
of parsed input strings in a couple of `amount` error types.
|
||||||
|
|
||||||
# 0.1.0 - Initial Release - 2024-04-03
|
# 0.1.0 - Initial Release - 2024-04-03
|
||||||
|
|
||||||
Initial release of the `bitcoin-units` crate. These unit types are
|
Initial release of the `bitcoin-units` crate. These unit types are
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bitcoin-units"
|
name = "bitcoin-units"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
||||||
|
|
Loading…
Reference in New Issue