From be02045561aec320c8d929c7a2c66511dfc5f058 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Wed, 8 Mar 2023 02:39:15 +0000 Subject: [PATCH 1/3] update internals CHANGELOG for release --- internals/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internals/CHANGELOG.md b/internals/CHANGELOG.md index 4941a858..a5adaaa5 100644 --- a/internals/CHANGELOG.md +++ b/internals/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased (0.1.0) +# 0.1.0 - 2023-03-08 Split this crate out from the [rust-bitcoin](https://github.com/rust-bitcoin/rust-bitcoin) crate. For previous development history see the original From ca3b4330e8c720428ccc81622c185809b9eb807e Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Wed, 8 Mar 2023 15:02:31 +0000 Subject: [PATCH 2/3] specify `internals` version in other Cargo.toml files --- bitcoin/Cargo.toml | 2 +- hashes/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index e9616792..09690248 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -34,7 +34,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -bitcoin-internals = { path = "../internals" } +bitcoin-internals = { path = "../internals", version = "0.1.0" } bech32 = { version = "0.9.0", default-features = false } bitcoin_hashes = { version = "0.12.0", default-features = false } secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", tag = "2023-03-05--fix-hashes", default-features = false, features = ["bitcoin_hashes"] } diff --git a/hashes/Cargo.toml b/hashes/Cargo.toml index 4239f43c..f0da1fde 100644 --- a/hashes/Cargo.toml +++ b/hashes/Cargo.toml @@ -24,7 +24,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -internals = { path = "../internals", package = "bitcoin-internals" } +internals = { path = "../internals", package = "bitcoin-internals", version = "0.1.0" } core2 = { version = "0.3.0", default_features = false, optional = true } # Only enable this if you explicitly do not want to use "std", otherwise enable "serde-std". From 51f2f8483ccef7c73e4e9e643ad0dd4406891aa7 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Mon, 13 Mar 2023 16:02:12 +0000 Subject: [PATCH 3/3] rename bitcoin-internals to bitcoin-private --- bitcoin/Cargo.toml | 2 +- hashes/Cargo.toml | 2 +- internals/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index 09690248..6f1cee93 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -34,7 +34,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -bitcoin-internals = { path = "../internals", version = "0.1.0" } +bitcoin-internals = { path = "../internals", package = "bitcoin-private", version = "0.1.0" } bech32 = { version = "0.9.0", default-features = false } bitcoin_hashes = { version = "0.12.0", default-features = false } secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", tag = "2023-03-05--fix-hashes", default-features = false, features = ["bitcoin_hashes"] } diff --git a/hashes/Cargo.toml b/hashes/Cargo.toml index f0da1fde..be318b2d 100644 --- a/hashes/Cargo.toml +++ b/hashes/Cargo.toml @@ -24,7 +24,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -internals = { path = "../internals", package = "bitcoin-internals", version = "0.1.0" } +internals = { path = "../internals", package = "bitcoin-private", version = "0.1.0" } core2 = { version = "0.3.0", default_features = false, optional = true } # Only enable this if you explicitly do not want to use "std", otherwise enable "serde-std". diff --git a/internals/Cargo.toml b/internals/Cargo.toml index 2f79a2f1..582cb5f9 100644 --- a/internals/Cargo.toml +++ b/internals/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "bitcoin-internals" +name = "bitcoin-private" version = "0.1.0" authors = ["Andrew Poelstra ", "The Rust Bitcoin developers"] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoin/" -documentation = "https://docs.rs/bitcoin-internals" +documentation = "https://docs.rs/bitcoin-private" description = "Internal types and macros used by rust-bitcoin ecosystem" categories = ["cryptography::cryptocurrencies"] keywords = ["internal"]