consensus_encoding: Bump version to 1.0.0-rc.2
What changed, and why it matters
This commit is a routine version bump for a Rust package called `bitcoin-consensus-encoding`, moving it from one release candidate (1.0.0-rc.1) to the next (1.0.0-rc.2). It only updates version numbers in package manifests and lock files. There are no code changes, no bug fixes, and no security-related changes visible in the diff.
No security action required. Treat as a normal dependency/version maintenance commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit updates bitcoin-consensus-encoding from 1.0.0-rc.1 to 1.0.0-rc.2 across consensus_encoding/Cargo.toml, hashes/Cargo.toml, io/Cargo.toml, units/Cargo.toml, and both lock files. The commit message mentions prior changes (added reserve, Self usage, const constructors, removed hashes dependency) that are not part of this diff. The diff itself contains only version string changes.
Changed components
bitcoin-consensus-encoding version metadatahashes/Cargo.tomlio/Cargo.tomlunits/Cargo.tomlCargo-minimal.lockCargo-recent.lockInspect captured patch +6 / −6
diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock
index 500107a9..05bf38e3 100644
--- a/Cargo-minimal.lock
+++ b/Cargo-minimal.lock
@@ -74,7 +74,7 @@ version = "0.0.0"
[[package]]
name = "bitcoin-consensus-encoding"
-version = "1.0.0-rc.1"
+version = "1.0.0-rc.2"
dependencies = [
"bitcoin-internals",
]
diff --git a/Cargo-recent.lock b/Cargo-recent.lock
index fc83bda0..703d549d 100644
--- a/Cargo-recent.lock
+++ b/Cargo-recent.lock
@@ -73,7 +73,7 @@ version = "0.0.0"
[[package]]
name = "bitcoin-consensus-encoding"
-version = "1.0.0-rc.1"
+version = "1.0.0-rc.2"
dependencies = [
"bitcoin-internals",
]
diff --git a/consensus_encoding/Cargo.toml b/consensus_encoding/Cargo.toml
index 72ecdb75..f4518935 100644
--- a/consensus_encoding/Cargo.toml
+++ b/consensus_encoding/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bitcoin-consensus-encoding"
-version = "1.0.0-rc.1"
+version = "1.0.0-rc.2"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>", "Nick Johnson <nick@yonson.dev>", "Tobin C. Harding <me@tobin.cc>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
diff --git a/hashes/Cargo.toml b/hashes/Cargo.toml
index 8f404e97..a30bcc6d 100644
--- a/hashes/Cargo.toml
+++ b/hashes/Cargo.toml
@@ -23,7 +23,7 @@ small-hash = []
[dependencies]
internals = { package = "bitcoin-internals", path = "../internals", version = "0.4.1" }
-encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.1", default-features = false }
+encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.2", default-features = false }
hex = { package = "hex-conservative", version = "0.3.0", default-features = false, optional = true }
serde = { version = "1.0.195", default-features = false, optional = true }
diff --git a/io/Cargo.toml b/io/Cargo.toml
index 4129ae92..28f0793d 100644
--- a/io/Cargo.toml
+++ b/io/Cargo.toml
@@ -20,7 +20,7 @@ alloc = ["hashes?/alloc", "internals/alloc"]
[dependencies]
internals = { package = "bitcoin-internals", path = "../internals" }
-encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.1", default-features = false }
+encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.2", default-features = false }
hashes = { package = "bitcoin_hashes", path = "../hashes", default-features = false, optional = true }
diff --git a/units/Cargo.toml b/units/Cargo.toml
index f4c0d301..114ee1cb 100644
--- a/units/Cargo.toml
+++ b/units/Cargo.toml
@@ -18,7 +18,7 @@ std = ["alloc", "internals/std", "encoding?/std"]
alloc = ["internals/alloc", "serde?/alloc", "encoding?/alloc"]
[dependencies]
-encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.1", default-features = false, optional = true }
+encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.2", default-features = false, optional = true }
internals = { package = "bitcoin-internals", path = "../internals", version = "0.4.1" }
serde = { version = "1.0.195", default-features = false, features = ["derive"], optional = true }
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.