Skip to content

Commit c7eb9e6

Browse files
committed
Merge rust-bitcoin#1916: internals: Bump version to 0.2.0
8813a63 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: ACK 8813a63 sanket1729: utACK 8813a63 Tree-SHA512: a9bd9d4d69cba21329f3f63a9948afe566bb97c8c65f5d46c329a696a814e9eb31372d378de1ecf0f43f0cb42f11d53dc51bc467223b34629e61315d48b39a29
2 parents 8f4b57e + 8813a63 commit c7eb9e6

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ dependencies = [
6363

6464
[[package]]
6565
name = "bitcoin-internals"
66-
version = "0.1.0"
66+
version = "0.2.0"
6767
dependencies = [
6868
"serde",
6969
]

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ dependencies = [
6262

6363
[[package]]
6464
name = "bitcoin-internals"
65-
version = "0.1.0"
65+
version = "0.2.0"
6666
dependencies = [
6767
"serde",
6868
]

bitcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ all-features = true
3434
rustdoc-args = ["--cfg", "docsrs"]
3535

3636
[dependencies]
37-
internals = { package = "bitcoin-internals", version = "0.1.0", path = "../internals" }
37+
internals = { package = "bitcoin-internals", version = "0.2.0", path = "../internals" }
3838
bech32 = { version = "0.9.0", default-features = false }
3939
hashes = { package = "bitcoin_hashes", version = "0.12.0", default-features = false }
4040
secp256k1 = { version = "0.27.0", default-features = false, features = ["bitcoin_hashes"] }

hashes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ all-features = true
2323
rustdoc-args = ["--cfg", "docsrs"]
2424

2525
[dependencies]
26-
internals = { path = "../internals", package = "bitcoin-internals", version = "0.1.0" }
26+
internals = { path = "../internals", package = "bitcoin-internals", version = "0.2.0" }
2727

2828
core2 = { version = "0.3.0", default_features = false, optional = true }
2929
schemars = { version = "0.8.3", optional = true }

internals/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.2.0 - 2023-06-20
2+
3+
- [Rename crate](https://github.com/rust-bitcoin/rust-bitcoin/pull/1885) to `bitcoin-internals`
4+
- Add module to assist [alloc-free parse error handling](https://github.com/rust-bitcoin/rust-bitcoin/pull/1297)
5+
- Move various macros here.
6+
17
# 0.1.0 - 2023-03-08
28

39
Split this crate out from the [rust-bitcoin](https://github.com/rust-bitcoin/rust-bitcoin) crate.

internals/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitcoin-internals"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>", "The Rust Bitcoin developers"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"

0 commit comments

Comments
 (0)