Skip to content

Commit 689e996

Browse files
committed
release 0.2.1
1 parent ccb2e3b commit 689e996

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [0.2.1] - 2021-10-08
4+
5+
- Fix major problems in the `BitString` trait implementation for `AnyIpCidr`
6+
37
## [0.2.0] - 2021-08-09
48

59
### Added
@@ -19,3 +23,4 @@
1923
- Iterators (on `IpCidr` structs) now return `Inet` items instead of flat addresses. Use `.addresses()` on the iterator type to only iterate over the addresses.
2024

2125
[0.2.0]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.1.1...cidr-0.2.0
26+
[0.2.1]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.0...cidr-0.2.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cidr"
33
# also bump version in html_root_url in src/lib.rs
4-
version = "0.2.0"
4+
version = "0.2.1"
55
edition = "2018"
66
authors = ["Stefan Bühler <[email protected]>"]
77
description = "IP network and IP host within network types"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![cfg_attr(doc_cfg, feature(doc_cfg))]
22
#![cfg_attr(not(feature = "std"), no_std)]
33
#![warn(missing_docs)]
4-
#![doc(html_root_url = "https://docs.rs/cidr/0.2.0")]
4+
#![doc(html_root_url = "https://docs.rs/cidr/0.2.1")]
55
#![allow(clippy::match_like_matches_macro)]
66

77
//! This library provides types to represent an IP network ([`Cidr`]) or

0 commit comments

Comments
 (0)