Merge rust-bitcoin/rust-bitcoin#1916: internals: Bump version to 0.2.0
8813a63ec9
internals: Bump version to 0.2.0 (Tobin C. Harding) Pull request description: In preparation for release bump the version and add a changelog entry. Includes updating the dependency in `bitcoin` and `hashes`. ACKs for top commit: apoelstra: ACK8813a63ec9
sanket1729: utACK8813a63ec9
Tree-SHA512: a9bd9d4d69cba21329f3f63a9948afe566bb97c8c65f5d46c329a696a814e9eb31372d378de1ecf0f43f0cb42f11d53dc51bc467223b34629e61315d48b39a29
This commit is contained in:
commit
c7eb9e61ec
|
@ -63,7 +63,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "bitcoin-internals"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"serde",
|
||||
]
|
||||
|
|
|
@ -62,7 +62,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "bitcoin-internals"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"serde",
|
||||
]
|
||||
|
|
|
@ -34,7 +34,7 @@ all-features = true
|
|||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
internals = { package = "bitcoin-internals", version = "0.1.0", path = "../internals" }
|
||||
internals = { package = "bitcoin-internals", version = "0.2.0", path = "../internals" }
|
||||
bech32 = { version = "0.9.0", default-features = false }
|
||||
hashes = { package = "bitcoin_hashes", version = "0.12.0", default-features = false }
|
||||
secp256k1 = { version = "0.27.0", default-features = false, features = ["bitcoin_hashes"] }
|
||||
|
|
|
@ -23,7 +23,7 @@ all-features = true
|
|||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
internals = { path = "../internals", package = "bitcoin-internals", version = "0.1.0" }
|
||||
internals = { path = "../internals", package = "bitcoin-internals", version = "0.2.0" }
|
||||
|
||||
core2 = { version = "0.3.0", default_features = false, optional = true }
|
||||
schemars = { version = "0.8.3", optional = true }
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
# 0.2.0 - 2023-06-20
|
||||
|
||||
- [Rename crate](https://github.com/rust-bitcoin/rust-bitcoin/pull/1885) to `bitcoin-internals`
|
||||
- Add module to assist [alloc-free parse error handling](https://github.com/rust-bitcoin/rust-bitcoin/pull/1297)
|
||||
- Move various macros here.
|
||||
|
||||
# 0.1.0 - 2023-03-08
|
||||
|
||||
Split this crate out from the [rust-bitcoin](https://github.com/rust-bitcoin/rust-bitcoin) crate.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "bitcoin-internals"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>", "The Rust Bitcoin developers"]
|
||||
license = "CC0-1.0"
|
||||
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
||||
|
|
Loading…
Reference in New Issue