Skip to content

Commit 5fdc64e

Browse files
committed
relase 0.2.2
1 parent d92dcec commit 5fdc64e

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.2] - 2023-06-25
4+
5+
- Make all functions const if possible
6+
37
## [0.2.1] - 2021-10-08
48

59
- Fix major problems in the `BitString` trait implementation for `AnyIpCidr`
@@ -24,3 +28,4 @@
2428

2529
[0.2.0]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.1.1...cidr-0.2.0
2630
[0.2.1]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.0...cidr-0.2.1
31+
[0.2.2]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.1...cidr-0.2.2

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.1"
4+
version = "0.2.2"
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
@@ -2,7 +2,7 @@
22
#![cfg_attr(not(feature = "std"), no_std)]
33
#![warn(missing_docs)]
44
#![warn(rust_2018_idioms)]
5-
#![doc(html_root_url = "https://docs.rs/cidr/0.2.1")]
5+
#![doc(html_root_url = "https://docs.rs/cidr/0.2.2")]
66
#![allow(clippy::match_like_matches_macro)]
77

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

0 commit comments

Comments
 (0)