Bläddra i källkod

Merge pull request #683 from servo/test-include

Add tests to url package; update to 2.2.1
Manish Goregaokar 5 år sedan
förälder
incheckning
7bb95a183d
2 ändrade filer med 3 tillägg och 3 borttagningar
  1. 2 2
      url/Cargo.toml
  2. 1 1
      url/src/lib.rs

+ 2 - 2
url/Cargo.toml

@@ -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"
@@ -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]

+ 1 - 1
url/src/lib.rs

@@ -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;