Skip to content

Commit 4f500b8

Browse files
committed
consensus_encoding: Bump version to 1.0.0-rc.2
Do another RC release, no changelog additions required IMO. Includes: - Added `reserve` method - Used `Self` instead of `Foo` - Made a few constructors const - Removed `hashes` dep Bump the version, update to use this RC version in crates that depend on `encoding`, and update the lock files.
1 parent c85c205 commit 4f500b8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ version = "0.0.0"
7474

7575
[[package]]
7676
name = "bitcoin-consensus-encoding"
77-
version = "1.0.0-rc.1"
77+
version = "1.0.0-rc.2"
7878
dependencies = [
7979
"bitcoin-internals",
8080
]

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ version = "0.0.0"
7373

7474
[[package]]
7575
name = "bitcoin-consensus-encoding"
76-
version = "1.0.0-rc.1"
76+
version = "1.0.0-rc.2"
7777
dependencies = [
7878
"bitcoin-internals",
7979
]

consensus_encoding/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-consensus-encoding"
3-
version = "1.0.0-rc.1"
3+
version = "1.0.0-rc.2"
44
authors = ["Andrew Poelstra <[email protected]>", "Nick Johnson <[email protected]>", "Tobin C. Harding <[email protected]>"]
55
license = "CC0-1.0"
66
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"

hashes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ small-hash = []
2323

2424
[dependencies]
2525
internals = { package = "bitcoin-internals", path = "../internals", version = "0.4.1" }
26-
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.1", default-features = false }
26+
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.2", default-features = false }
2727

2828
hex = { package = "hex-conservative", version = "0.3.0", default-features = false, optional = true }
2929
serde = { version = "1.0.195", default-features = false, optional = true }

io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ alloc = ["hashes?/alloc", "internals/alloc"]
2020

2121
[dependencies]
2222
internals = { package = "bitcoin-internals", path = "../internals" }
23-
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.1", default-features = false }
23+
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.2", default-features = false }
2424

2525
hashes = { package = "bitcoin_hashes", path = "../hashes", default-features = false, optional = true }
2626

units/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ std = ["alloc", "internals/std", "encoding?/std"]
1818
alloc = ["internals/alloc", "serde?/alloc", "encoding?/alloc"]
1919

2020
[dependencies]
21-
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.1", default-features = false, optional = true }
21+
encoding = { package = "bitcoin-consensus-encoding", path = "../consensus_encoding", version = "1.0.0-rc.2", default-features = false, optional = true }
2222
internals = { package = "bitcoin-internals", path = "../internals", version = "0.4.1" }
2323

2424
serde = { version = "1.0.195", default-features = false, features = ["derive"], optional = true }

0 commit comments

Comments
 (0)