Skip to content

Commit

Permalink
Merge rust-bitcoin#2118: Tracking PR for release v0.31.0-rc1
Browse files Browse the repository at this point in the history
6731e85 bitcoin: Bump version to 0.31.0-rc1 (Tobin C. Harding)

Pull request description:

  Lets go!

  As discussed in rust-bitcoin#2099 we are going to do RC releases for this release. This PR is for the first one, as such it does not include changelog entries, we are going to try out using the new github action to create those.

ACKs for top commit:
  apoelstra:
    ACK 6731e85
  Kixunil:
    ACK 6731e85

Tree-SHA512: 8c97a6885f8b77e5be85dcaca79428bdb88167681bd6ff2b4fd020b9d695c0e847c37a57ac73d432f22b049e47fefa11c0b3e4ca486ea8af8b93df164542ef6c
  • Loading branch information
apoelstra committed Oct 14, 2023
2 parents e0ddead + 6731e85 commit ef0a958
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies = [

[[package]]
name = "bitcoin"
version = "0.30.0"
version = "0.31.0-rc1"
dependencies = [
"base64",
"bech32",
Expand Down
2 changes: 1 addition & 1 deletion Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies = [

[[package]]
name = "bitcoin"
version = "0.30.0"
version = "0.31.0-rc1"
dependencies = [
"base64",
"bech32",
Expand Down
2 changes: 1 addition & 1 deletion bitcoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoin"
version = "0.30.0"
version = "0.31.0-rc1"
authors = ["Andrew Poelstra <[email protected]>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
Expand Down
2 changes: 0 additions & 2 deletions contrib/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ if cargo --version | grep ${MSRV}; then
# byteorder 1.5.0 uses edition 2021
cargo update -p byteorder --precise 1.4.3

cargo update -p bitcoin:0.30.1 --precise 0.30.0

# Build MSRV with pinned versions.
cargo check --all-features --all-targets
fi
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cargo-fuzz = true

[dependencies]
honggfuzz = { version = "0.5.55", default-features = false }
bitcoin = { version = "0.30.0", features = [ "serde" ] }
bitcoin = { version = "0.31.0-rc1", features = [ "serde" ] }

serde = { version = "1.0.103", features = [ "derive" ] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/generate-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cargo-fuzz = true
[dependencies]
honggfuzz = { version = "0.5.55", default-features = false }
bitcoin = { version = "0.30.0", features = [ "serde" ] }
bitcoin = { version = "0.31.0-rc1", features = [ "serde" ] }
serde = { version = "1.0.103", features = [ "derive" ] }
serde_json = "1.0"
Expand Down

0 comments on commit ef0a958

Please sign in to comment.