Skip to content

Commit 99482ed

Browse files
committed
[bitreq] Bump crate version to 0.3
I believe we should go ahead and release bitreq 0.3 with all the changes we made to it, as its a substantial improvement for async clients and now something that could reasonably be used in place of `reqwest` in most cases. There's some remaining proxy issues, but those can be resolved in a point release without API change.
1 parent 84e5318 commit 99482ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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.2.0"
3+
version = "0.3.0"
44
authors = ["Jens Pitkanen <[email protected]>", "Tobin C. Harding <[email protected]>"]
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.2.0", path = "../bitreq", features = ["json-using-serde"], optional = true }
37+
bitreq = { version = "0.3.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.2.0", path = "../bitreq", features = ["https"], optional = true }
30+
bitreq = { version = "0.3.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)