From d1ccb04d2bc8cdcb2b6dbed218453658b20ae742 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Tue, 13 Jun 2017 15:34:39 +0200 Subject: [PATCH] Increment version number for new feature (UNC paths). --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c30fdcf0c..4e2015fb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "url" # When updating version, also modify html_root_url in the lib.rs -version = "1.4.1" +version = "1.5.0" authors = ["The rust-url developers"] description = "URL library for Rust, based on the WHATWG URL Standard" diff --git a/src/lib.rs b/src/lib.rs index 5972df9a5..2d4fc5d1d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -90,7 +90,7 @@ let css_url = this_document.join("../main.css").unwrap(); assert_eq!(css_url.as_str(), "http://servo.github.io/rust-url/main.css") */ -#![doc(html_root_url = "https://docs.rs/url/1.4.0")] +#![doc(html_root_url = "https://docs.rs/url/1.5.1")] #[cfg(feature="rustc-serialize")] extern crate rustc_serialize; #[macro_use] extern crate matches;