Skip to content

Commit

Permalink
Merge pull request #683 from servo/test-include
Browse files Browse the repository at this point in the history
Add tests to url package; update to 2.2.1
  • Loading branch information
Manishearth authored Feb 18, 2021
2 parents 5e92976 + 5d0ee3a commit 7bb95a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 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.2.0"
version = "2.2.1"
authors = ["The rust-url developers"]

description = "URL library for Rust, based on the WHATWG URL Standard"
Expand All @@ -12,7 +12,7 @@ readme = "../README.md"
keywords = ["url", "parser"]
categories = ["parser-implementations", "web-programming", "encoding"]
license = "MIT/Apache-2.0"
include = ["src/**/*", "LICENSE-*", "README.md"]
include = ["src/**/*", "LICENSE-*", "README.md", "tests/**"]
edition = "2018"

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

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

#[macro_use]
extern crate matches;
Expand Down

0 comments on commit 7bb95a1

Please sign in to comment.