Merge rust-bitcoin/rust-bitcoin#2632: internals: Release tracking PR `v0.3.0`

af6dc1db02 internals: Bump version to 0.3.0 (Tobin C. Harding)

Pull request description:

  In preparation for release add a changelog and bump the version number.

  Please note, the changelog is pretty terse.

ACKs for top commit:
  apoelstra:
    ACK af6dc1db02
  sanket1729:
    ACK af6dc1db02

Tree-SHA512: b70d4b9de7de90aba3cbff90dd7f25c5ac801d020dbdfe3e64af4c079347cba726aa783a94fc777e7bf177db8402b54948c2dfd4a766d90c1a7a7a6bdfd36136
This commit is contained in:
Andrew Poelstra 2024-04-01 23:58:51 +00:00
commit 684b453b7c
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
8 changed files with 30 additions and 12 deletions

View File

@ -18,7 +18,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
name = "base58ck"
version = "0.1.0"
dependencies = [
"bitcoin-internals",
"bitcoin-internals 0.3.0",
"bitcoin_hashes 0.14.0",
"hex-conservative 0.2.0",
]
@ -53,7 +53,7 @@ dependencies = [
"base64",
"bech32",
"bincode",
"bitcoin-internals",
"bitcoin-internals 0.3.0",
"bitcoin-io",
"bitcoin-units",
"bitcoin_hashes 0.14.0",
@ -82,6 +82,12 @@ dependencies = [
[[package]]
name = "bitcoin-internals"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb"
[[package]]
name = "bitcoin-internals"
version = "0.3.0"
dependencies = [
"serde",
]
@ -94,7 +100,7 @@ version = "0.1.2"
name = "bitcoin-units"
version = "0.1.0"
dependencies = [
"bitcoin-internals",
"bitcoin-internals 0.3.0",
"serde",
"serde_json",
"serde_test",
@ -106,7 +112,7 @@ version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b"
dependencies = [
"bitcoin-internals",
"bitcoin-internals 0.2.0",
"hex-conservative 0.1.1",
]

View File

@ -18,7 +18,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
name = "base58ck"
version = "0.1.0"
dependencies = [
"bitcoin-internals",
"bitcoin-internals 0.3.0",
"bitcoin_hashes 0.14.0",
"hex-conservative 0.2.0",
]
@ -52,7 +52,7 @@ dependencies = [
"base64",
"bech32",
"bincode",
"bitcoin-internals",
"bitcoin-internals 0.3.0",
"bitcoin-io",
"bitcoin-units",
"bitcoin_hashes 0.14.0",
@ -81,6 +81,12 @@ dependencies = [
[[package]]
name = "bitcoin-internals"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb"
[[package]]
name = "bitcoin-internals"
version = "0.3.0"
dependencies = [
"serde",
]
@ -93,7 +99,7 @@ version = "0.1.2"
name = "bitcoin-units"
version = "0.1.0"
dependencies = [
"bitcoin-internals",
"bitcoin-internals 0.3.0",
"serde",
"serde_json",
"serde_test",
@ -105,7 +111,7 @@ version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b"
dependencies = [
"bitcoin-internals",
"bitcoin-internals 0.2.0",
"hex-conservative 0.1.1",
]

View File

@ -22,7 +22,7 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
hashes = { package = "bitcoin_hashes", version = "0.14.0", default-features = false, features = ["alloc"] }
internals = { package = "bitcoin-internals", version = "0.2.0" }
internals = { package = "bitcoin-internals", version = "0.3.0" }
[dev-dependencies]
hex = { package = "hex-conservative", version = "0.2.0", default-features = false, features = ["alloc"] }

View File

@ -33,7 +33,7 @@ bech32 = { version = "0.11.0", default-features = false, features = ["alloc"] }
hashes = { package = "bitcoin_hashes", version = "0.14.0", default-features = false, features = ["alloc", "io"] }
hex = { package = "hex-conservative", version = "0.2.0", default-features = false, features = ["alloc"] }
hex_lit = "0.1.1"
internals = { package = "bitcoin-internals", version = "0.2.0" }
internals = { package = "bitcoin-internals", version = "0.3.0" }
io = { package = "bitcoin-io", version = "0.1.1", default-features = false, features = ["alloc"] }
secp256k1 = { version = "0.28.0", default-features = false, features = ["hashes", "alloc"] }
units = { package = "bitcoin-units", version = "0.1.0", default-features = false, features = ["alloc"] }

View File

@ -178,6 +178,7 @@ do_dup_deps() {
| grep '^[0-9A-Za-z]' \
| grep -v 'syn' \
| grep -v 'bitcoin_hashes' \
| grep -v 'bitcoin-internals' \
| grep -v 'hex-conservative' \
| wc -l
)

View File

@ -1,3 +1,8 @@
# 0.3.0 - 2024-03-24
- Bump MSRV to Rust version 1.56.1 [#2188](https://github.com/rust-bitcoin/rust-bitcoin/pull/2188)
- Implement custom `ArrayVec` that is `Copy` [#2287](https://github.com/rust-bitcoin/rust-bitcoin/pull/2287)
# 0.2.0 - 2023-06-20
- [Rename crate](https://github.com/rust-bitcoin/rust-bitcoin/pull/1885) to `bitcoin-internals`

View File

@ -1,6 +1,6 @@
[package]
name = "bitcoin-internals"
version = "0.2.0"
version = "0.3.0"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>", "The Rust Bitcoin developers"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"

View File

@ -22,7 +22,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
internals = { package = "bitcoin-internals", version = "0.2.0" }
internals = { package = "bitcoin-internals", version = "0.3.0" }
serde = { version = "1.0.103", default-features = false, features = ["derive"], optional = true }