Skip to content

Commit 51ffafd

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 bc4f41a commit 51ffafd

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo-minimal.lock

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

142142
[[package]]
143143
name = "bitreq"
144-
version = "0.2.0"
144+
version = "0.3.0"
145145
dependencies = [
146146
"base64 0.22.1",
147147
"log",

Cargo-recent.lock

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

142142
[[package]]
143143
name = "bitreq"
144-
version = "0.2.0"
144+
version = "0.3.0"
145145
dependencies = [
146146
"base64 0.22.1",
147147
"log",

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 <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.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)