From ca2da8ae30e2c94e590c630890549a52cd0a794c Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Wed, 8 Jan 2020 10:37:12 +0000 Subject: [PATCH] Uprev for a new release --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aa0f471..af99c8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ipnetwork" -version = "0.15.1" # When updating version, also modify html_root_url in the lib.rs +version = "0.16.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" license = "Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index e69187b..524dd9c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,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.15.1")] +#![doc(html_root_url = "https://docs.rs/ipnetwork/0.16.0")] use std::{fmt, net::IpAddr, str::FromStr};