Skip to content

Commit f091d2b

Browse files
author
bors-servo
authored
Auto merge of #575 - valenting:version-2.1.1, r=SimonSapin
Update version to 2.1.1 PR #537 fixed a large number of issues which affected compliance with the URL spec. We should release a new crate version with these changes.
2 parents 9cd6467 + 1593578 commit f091d2b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

+2-2
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.1.0"
5+
version = "2.1.1"
66
authors = ["The rust-url developers"]
77

88
description = "URL library for Rust, based on the WHATWG URL Standard"
@@ -39,7 +39,7 @@ bencher = "0.1"
3939
[dependencies]
4040
idna = { version = "0.2.0", path = "./idna" }
4141
matches = "0.1"
42-
percent-encoding = { version = "2.0.0", path = "./percent_encoding" }
42+
percent-encoding = { version = "2.1.0", path = "./percent_encoding" }
4343
serde = {version = "1.0", optional = true, features = ["derive"]}
4444

4545
[[bench]]

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ assert_eq!(css_url.as_str(), "http://servo.github.io/rust-url/main.css");
105105
# run().unwrap();
106106
*/
107107

108-
#![doc(html_root_url = "https://docs.rs/url/2.0.0")]
108+
#![doc(html_root_url = "https://docs.rs/url/2.1.1")]
109109

110110
#[macro_use]
111111
extern crate matches;

0 commit comments

Comments
 (0)