diff --git a/Cargo.toml b/Cargo.toml index 1fa71e3..65862e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ipnetwork" -version = "0.12.8" # When updating version, also modify html_root_url in the lib.rs +version = "0.13.0" # When updating version, also modify html_root_url in the lib.rs authors = ["Abhishek Chanda ", "Linus Färnstrand "] description = "A library to work with IP CIDRs in Rust, heavily WIP" license = "Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index ab40e24..35b9272 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ #![cfg_attr(feature = "dev", feature(plugin))] #![cfg_attr(feature = "dev", plugin(clippy))] #![crate_type = "lib"] -#![doc(html_root_url = "https://docs.rs/ipnetwork/0.12.8")] +#![doc(html_root_url = "https://docs.rs/ipnetwork/0.13")] extern crate serde; #[macro_use]