Skip to content

Commit 359bc90

Browse files
authored
Merge pull request servo#792 from servo/version_bump_2.3.1
Bump url version to 2.3.1 and bump minor for dependencies
2 parents 35abc32 + ad8911a commit 359bc90

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

data-url/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "data-url"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
55
description = "Processing of data: URL according to WHATWG’s Fetch Standard"
66
repository = "https://github.com/servo/rust-url"

form_urlencoded/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "form_urlencoded"
3-
version = "1.0.1"
3+
version = "1.1.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
repository = "https://github.com/servo/rust-url"
@@ -12,4 +12,4 @@ rust-version = "1.51"
1212
test = false
1313

1414
[dependencies]
15-
percent-encoding = { version = "2.1.0", path = "../percent_encoding" }
15+
percent-encoding = { version = "2.2.0", path = "../percent_encoding" }

idna/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "idna"
3-
version = "0.2.3"
3+
version = "0.3.0"
44
authors = ["The rust-url developers"]
55
description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
66
repository = "https://github.com/servo/rust-url/"

percent_encoding/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "percent-encoding"
3-
version = "2.1.0"
3+
version = "2.2.0"
44
authors = ["The rust-url developers"]
55
description = "Percent encoding and decoding"
66
repository = "https://github.com/servo/rust-url/"

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.3.0"
5+
version = "2.3.1"
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.0.0", path = "../form_urlencoded" }
32-
idna = { version = "0.2.0", path = "../idna" }
33-
percent-encoding = { version = "2.1.0", path = "../percent_encoding" }
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" }
3434
serde = {version = "1.0", optional = true, features = ["derive"]}
3535

3636
[features]

url/src/lib.rs

Lines changed: 1 addition & 1 deletion
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.0")]
124+
#![doc(html_root_url = "https://docs.rs/url/2.3.1")]
125125
#![cfg_attr(
126126
feature = "debugger_visualizer",
127127
feature(debugger_visualizer),

0 commit comments

Comments
 (0)