Merge rust-bitcoin/rust-bitcoin#2118: Tracking PR for release `v0.31.0-rc1`

6731e85dc1 bitcoin: Bump version to 0.31.0-rc1 (Tobin C. Harding)

Pull request description:

  Lets go!

  As discussed in #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 6731e85dc1
  Kixunil:
    ACK 6731e85dc1

Tree-SHA512: 8c97a6885f8b77e5be85dcaca79428bdb88167681bd6ff2b4fd020b9d695c0e847c37a57ac73d432f22b049e47fefa11c0b3e4ca486ea8af8b93df164542ef6c
This commit is contained in:
Andrew Poelstra 2023-10-14 18:50:04 +00:00
commit ef0a958012
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
6 changed files with 5 additions and 7 deletions

View File

@ -32,7 +32,7 @@ dependencies = [
[[package]]
name = "bitcoin"
version = "0.30.0"
version = "0.31.0-rc1"
dependencies = [
"base64",
"bech32",

View File

@ -31,7 +31,7 @@ dependencies = [
[[package]]
name = "bitcoin"
version = "0.30.0"
version = "0.31.0-rc1"
dependencies = [
"base64",
"bech32",

View File

@ -1,6 +1,6 @@
[package]
name = "bitcoin"
version = "0.30.0"
version = "0.31.0-rc1"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"

View File

@ -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

View File

@ -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"

View File

@ -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"