From 8391f6a6b7502052f0373353be3f196b28aa4183 Mon Sep 17 00:00:00 2001 From: Kristofer Rye Date: Wed, 26 Feb 2020 10:51:41 -0600 Subject: [PATCH] Release Version 0.8.0 Signed-off-by: Kristofer Rye --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 059c8dc..305fbac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased + +## [0.8.0] - 2020-02-26 +### Added +- `is_cidr` method on `NetAddr`, `Netv4Addr`, and `Netv6Addr` to return whether the represented netaddr is CIDR or not. + ### Changed - Updated the `serde::de` behavior to be slightly more informative and standard. @@ -95,6 +100,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - An impl for `PartialOrd` on `NetAddr` for comparing two networks first by network address and then by netmask. - Tests for all of these Added features. +[0.8.0]: https://github.com/rye/rust-netaddr2/releases/tag/v0.8.0 [0.7.1]: https://github.com/rye/rust-netaddr2/releases/tag/v0.7.1 [0.7.0]: https://github.com/rye/rust-netaddr2/releases/tag/v0.7.0 [0.6.1]: https://github.com/rye/rust-netaddr2/releases/tag/v0.6.1 diff --git a/Cargo.toml b/Cargo.toml index d806208..83c6b11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "netaddr2" -version = "0.7.1" +version = "0.8.0" license = "MIT OR Apache-2.0" authors = ["Kristofer Rye "] edition = "2018"