Skip to content

Commit 52cd6e1

Browse files
committed
bitreq: Bump version to 0.2.0
In preparation for release bump the version number, add a changelog entry, and update the lock files. Also depend on the new version in all local crates.
1 parent 0d62ff4 commit 52cd6e1

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

Cargo-minimal.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
156156

157157
[[package]]
158158
name = "bitreq"
159-
version = "0.1.0"
159+
version = "0.2.0"
160160
dependencies = [
161161
"base64 0.22.1",
162162
"chrono",

Cargo-recent.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
156156

157157
[[package]]
158158
name = "bitreq"
159-
version = "0.1.0"
159+
version = "0.2.0"
160160
dependencies = [
161161
"base64 0.22.1",
162162
"chrono",

bitreq/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.2.0 - 2025-10-31
2+
3+
* Re-implement `json-using-serde` feature [#398](https://github.com/rust-bitcoin/corepc/pull/398)
4+
* Update MSRV to Rust `v1.75.0` [#405](https://github.com/rust-bitcoin/corepc/pull/405/)
5+
16
# 0.1.0 - 2025-10-22
27

38
* Fork `minreq`, strip it down, and import it into the `corepc` repo.

bitreq/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitreq"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Jens Pitkanen <jens@neon.moe>", "Tobin C. Harding <me@tobin.cc>"]
55
description = "Simple, minimal-dependency HTTP client"
66
documentation = "https://docs.rs/bitreq"

jsonrpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ serde = { version = "1", features = ["derive"] }
3434
serde_json = { version = "1", features = [ "raw_value" ] }
3535

3636
base64 = { version = "0.22.1", optional = true }
37-
bitreq = { version = "0.1.0", path = "../bitreq", features = ["json-using-serde"], optional = true }
37+
bitreq = { version = "0.2.0", path = "../bitreq", features = ["json-using-serde"], optional = true }
3838
socks = { version = "0.3.4", optional = true}
3939

4040
[lints.rust]

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ env_logger = { version = "0.9.3", default-features = false }
2727
anyhow = { version = "1.0.66", optional = true }
2828
bitcoin_hashes = { version = ">= 0.13, <= 0.14", optional = true }
2929
flate2 = { version = "1.0", optional = true }
30-
bitreq = { version = "0.1.0", path = "../bitreq", features = ["https"], optional = true }
30+
bitreq = { version = "0.2.0", path = "../bitreq", features = ["https"], optional = true }
3131
tar = { version = "0.4", optional = true }
3232
zip = { version = "0.6.6", default-features = false, features = ["bzip2", "deflate"], optional = true }
3333

0 commit comments

Comments
 (0)