Skip to content

Commit a3e07c7

Browse files
authored
Merge pull request #840 from servo/update-ver
Update url to 2.4.0 and release new version
2 parents 0e25146 + 1317d9d commit a3e07c7

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

data-url/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "data-url"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Simon Sapin <[email protected]>"]
55
description = "Processing of data: URL according to WHATWG’s Fetch Standard"
66
categories = ["no_std"]

form_urlencoded/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "form_urlencoded"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = ["The rust-url developers"]
55
description = "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms."
66
categories = ["no_std"]
@@ -18,4 +18,4 @@ std = ["alloc", "percent-encoding/std"]
1818
alloc = ["percent-encoding/alloc"]
1919

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

idna/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "idna"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["The rust-url developers"]
55
description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
66
categories = ["no_std"]

percent_encoding/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "percent-encoding"
3-
version = "2.2.0"
3+
version = "2.3.0"
44
authors = ["The rust-url developers"]
55
description = "Percent encoding and decoding"
66
categories = ["no_std"]

url/Cargo.toml

+4-4
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.3.1"
5+
version = "2.4.0"
66
authors = ["The rust-url developers"]
77

88
description = "URL library for Rust, based on the WHATWG URL Standard"
@@ -28,9 +28,9 @@ debugger_test = "0.1"
2828
debugger_test_parser = "0.1"
2929

3030
[dependencies]
31-
form_urlencoded = { version = "1.1.0", path = "../form_urlencoded" }
32-
idna = { version = "0.3.0", path = "../idna" }
33-
percent-encoding = { version = "2.2.0", path = "../percent_encoding" }
31+
form_urlencoded = { version = "1.2.0", path = "../form_urlencoded" }
32+
idna = { version = "0.4.0", path = "../idna" }
33+
percent-encoding = { version = "2.3.0", path = "../percent_encoding" }
3434
serde = {version = "1.0", optional = true, features = ["derive"]}
3535

3636
[features]

url/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ url = { version = "2", features = ["serde"] }
121121
122122
*/
123123

124-
#![doc(html_root_url = "https://docs.rs/url/2.3.1")]
124+
#![doc(html_root_url = "https://docs.rs/url/2.4.0")]
125125
#![cfg_attr(
126126
feature = "debugger_visualizer",
127127
feature(debugger_visualizer),

0 commit comments

Comments
 (0)