Skip to content

Commit 0da819f

Browse files
committed
version bump to 2.5.6
1 parent 91377f4 commit 0da819f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

form_urlencoded/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ std = ["alloc", "percent-encoding/std"]
1818
alloc = ["percent-encoding/alloc"]
1919

2020
[dependencies]
21-
percent-encoding = { version = "2.3.0", default-features = false, path = "../percent_encoding" }
21+
percent-encoding = { version = "2.3.2", default-features = false, path = "../percent_encoding" }
2222

2323
[package.metadata.docs.rs]
2424
rustdoc-args = ["--generate-link-to-definition"]

url/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "url"
44
# When updating version, also modify html_root_url in the lib.rs
5-
version = "2.5.5"
5+
version = "2.5.6"
66
authors = ["The rust-url developers"]
77

88
description = "URL library for Rust, based on the WHATWG URL Standard"
@@ -25,9 +25,9 @@ bencher = "0.1"
2525
wasm-bindgen-test = "0.3"
2626

2727
[dependencies]
28-
form_urlencoded = { version = "1.2.1", path = "../form_urlencoded", default-features = false, features = ["alloc"] }
29-
idna = { version = "1.0.3", path = "../idna", default-features = false, features = ["alloc", "compiled_data"] }
30-
percent-encoding = { version = "2.3.1", path = "../percent_encoding", default-features = false, features = ["alloc"] }
28+
form_urlencoded = { version = "1.2.2", path = "../form_urlencoded", default-features = false, features = ["alloc"] }
29+
idna = { version = "1.1.0", path = "../idna", default-features = false, features = ["alloc", "compiled_data"] }
30+
percent-encoding = { version = "2.3.2", path = "../percent_encoding", default-features = false, features = ["alloc"] }
3131
serde = { version = "1.0", optional = true, features = ["derive"], default-features = false }
3232

3333
[features]

url/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ url = { version = "2", features = ["debugger_visualizer"] }
143143
*/
144144

145145
#![no_std]
146-
#![doc(html_root_url = "https://docs.rs/url/2.5.5")]
146+
#![doc(html_root_url = "https://docs.rs/url/2.5.6")]
147147
#![cfg_attr(
148148
feature = "debugger_visualizer",
149149
debugger_visualizer(natvis_file = "../../debug_metadata/url.natvis")

0 commit comments

Comments
 (0)