Skip to content

Commit

Permalink
Update version to 2.1.1
Browse files Browse the repository at this point in the history
PR servo#537 fixed a large number of issues which affected compliance
with the URL spec. We should release a new crate version with
these changes.
  • Loading branch information
valenting committed Jan 8, 2020
1 parent 9cd6467 commit 1593578
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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.1.0"
version = "2.1.1"
authors = ["The rust-url developers"]

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

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ assert_eq!(css_url.as_str(), "http://servo.github.io/rust-url/main.css");
# run().unwrap();
*/

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

#[macro_use]
extern crate matches;
Expand Down

0 comments on commit 1593578

Please sign in to comment.