Skip to content

Commit

Permalink
Merge #2632: internals: Release tracking PR v0.3.0
Browse files Browse the repository at this point in the history
af6dc1d 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 af6dc1d
  sanket1729:
    ACK af6dc1d

Tree-SHA512: b70d4b9de7de90aba3cbff90dd7f25c5ac801d020dbdfe3e64af4c079347cba726aa783a94fc777e7bf177db8402b54948c2dfd4a766d90c1a7a7a6bdfd36136
  • Loading branch information
apoelstra committed Apr 2, 2024
2 parents c20cb4d + af6dc1d commit 684b453
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 12 deletions.
14 changes: 10 additions & 4 deletions Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
Expand Down Expand Up @@ -53,7 +53,7 @@ dependencies = [
"base64",
"bech32",
"bincode",
"bitcoin-internals",
"bitcoin-internals 0.3.0",
"bitcoin-io",
"bitcoin-units",
"bitcoin_hashes 0.14.0",
Expand Down Expand Up @@ -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",
]
Expand All @@ -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",
Expand All @@ -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",
]

Expand Down
14 changes: 10 additions & 4 deletions Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
Expand Down Expand Up @@ -52,7 +52,7 @@ dependencies = [
"base64",
"bech32",
"bincode",
"bitcoin-internals",
"bitcoin-internals 0.3.0",
"bitcoin-io",
"bitcoin-units",
"bitcoin_hashes 0.14.0",
Expand Down Expand Up @@ -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",
]
Expand All @@ -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",
Expand All @@ -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",
]

Expand Down
2 changes: 1 addition & 1 deletion base58/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion bitcoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
1 change: 1 addition & 0 deletions contrib/run_task.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
5 changes: 5 additions & 0 deletions internals/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion internals/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down
2 changes: 1 addition & 1 deletion units/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down

0 comments on commit 684b453

Please sign in to comment.