Merge pull request #81 from achanda/release-0.13.1

Release version 0.13.1
This commit is contained in:
Abhishek Chanda
2018-08-31 23:56:27 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "ipnetwork"
version = "0.13.0" # When updating version, also modify html_root_url in the lib.rs
version = "0.13.1" # When updating version, also modify html_root_url in the lib.rs
authors = ["Abhishek Chanda <abhishek.becs@gmail.com>", "Linus Färnstrand <faern@faern.net>"]
description = "A library to work with IP CIDRs in Rust, heavily WIP"
license = "Apache-2.0"

View File

@ -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.13")]
#![doc(html_root_url = "https://docs.rs/ipnetwork/0.13.1")]
extern crate serde;
#[macro_use]