Skip to content

Commit 7bb95a1

Browse files
authored
Merge pull request #683 from servo/test-include
Add tests to url package; update to 2.2.1
2 parents 5e92976 + 5d0ee3a commit 7bb95a1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

url/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.2.0"
5+
version = "2.2.1"
66
authors = ["The rust-url developers"]
77

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

1818
[badges]

url/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ url = { version = "2", features = ["serde"] }
120120
```
121121
*/
122122

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

125125
#[macro_use]
126126
extern crate matches;

0 commit comments

Comments
 (0)