From 9e42aaeb3ec665f676c291af3a547b38c87354f8 Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Thu, 12 Sep 2019 20:25:48 +0100 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 83258eb..33083b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ipnetwork" -version = "0.14.0" # When updating version, also modify html_root_url in the lib.rs +version = "0.15.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 9910edf..effbef9 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.14.0")] +#![doc(html_root_url = "https://docs.rs/ipnetwork/0.15.0")] use serde::{de, Deserialize, Deserializer, Serialize, Serializer}; use std::{fmt, net::IpAddr, str::FromStr};