Skip to content

Commit

Permalink
Merge pull request #840 from servo/update-ver
Browse files Browse the repository at this point in the history
Update url to 2.4.0 and release new version
  • Loading branch information
valenting committed Jun 5, 2023
2 parents 0e25146 + 1317d9d commit a3e07c7
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion data-url/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "data-url"
version = "0.2.0"
version = "0.3.0"
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
description = "Processing of data: URL according to WHATWG’s Fetch Standard"
categories = ["no_std"]
Expand Down
4 changes: 2 additions & 2 deletions form_urlencoded/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "form_urlencoded"
version = "1.1.0"
version = "1.2.0"
authors = ["The rust-url developers"]
description = "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms."
categories = ["no_std"]
Expand All @@ -18,4 +18,4 @@ std = ["alloc", "percent-encoding/std"]
alloc = ["percent-encoding/alloc"]

[dependencies]
percent-encoding = { version = "2.2.0", default-features = false, path = "../percent_encoding" }
percent-encoding = { version = "2.3.0", default-features = false, path = "../percent_encoding" }
2 changes: 1 addition & 1 deletion idna/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "idna"
version = "0.3.0"
version = "0.4.0"
authors = ["The rust-url developers"]
description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
categories = ["no_std"]
Expand Down
2 changes: 1 addition & 1 deletion percent_encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "percent-encoding"
version = "2.2.0"
version = "2.3.0"
authors = ["The rust-url developers"]
description = "Percent encoding and decoding"
categories = ["no_std"]
Expand Down
8 changes: 4 additions & 4 deletions url/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name = "url"
# When updating version, also modify html_root_url in the lib.rs
version = "2.3.1"
version = "2.4.0"
authors = ["The rust-url developers"]

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

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

[features]
Expand Down
2 changes: 1 addition & 1 deletion url/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ url = { version = "2", features = ["serde"] }
*/

#![doc(html_root_url = "https://docs.rs/url/2.3.1")]
#![doc(html_root_url = "https://docs.rs/url/2.4.0")]
#![cfg_attr(
feature = "debugger_visualizer",
feature(debugger_visualizer),
Expand Down

0 comments on commit a3e07c7

Please sign in to comment.