From d54f463f86681fac43c891b0870b6bdf81de2d8c Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Sat, 23 Nov 2019 13:48:22 +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 33083b4..2a94513 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ipnetwork" -version = "0.15.0" # When updating version, also modify html_root_url in the lib.rs +version = "0.15.1" # 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 effbef9..c645ce0 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.15.0")] +#![doc(html_root_url = "https://docs.rs/ipnetwork/0.15.1")] use serde::{de, Deserialize, Deserializer, Serialize, Serializer}; use std::{fmt, net::IpAddr, str::FromStr};