Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump url version to 2.3.0 #791

Merged
merged 1 commit into from Sep 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion url/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

name = "url"
# When updating version, also modify html_root_url in the lib.rs
version = "2.2.2"
version = "2.3.0"
authors = ["The rust-url developers"]

description = "URL library for Rust, based on the WHATWG URL Standard"
Expand Down
11 changes: 1 addition & 10 deletions url/src/lib.rs
Expand Up @@ -119,18 +119,9 @@ See [serde documentation](https://serde.rs) for more information.
url = { version = "2", features = ["serde"] }
```

# Feature: `idna`

You can opt out [idna](https://en.wikipedia.org/wiki/Internationalized_domain_name) support
to reduce final binary size.

```toml
url = { version = "2", default-features = false }
```

*/

#![doc(html_root_url = "https://docs.rs/url/2.2.2")]
#![doc(html_root_url = "https://docs.rs/url/2.3.0")]
#![cfg_attr(
feature = "debugger_visualizer",
feature(debugger_visualizer),
Expand Down