Skip to content

Commit

Permalink
relase 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stbuehler committed Jun 25, 2023
1 parent d92dcec commit 5fdc64e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [0.2.2] - 2023-06-25

- Make all functions const if possible

## [0.2.1] - 2021-10-08

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

[0.2.0]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.1.1...cidr-0.2.0
[0.2.1]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.0...cidr-0.2.1
[0.2.2]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.1...cidr-0.2.2
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cidr"
# also bump version in html_root_url in src/lib.rs
version = "0.2.1"
version = "0.2.2"
edition = "2018"
authors = ["Stefan Bühler <stbuehler@web.de>"]
description = "IP network and IP host within network types"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(missing_docs)]
#![warn(rust_2018_idioms)]
#![doc(html_root_url = "https://docs.rs/cidr/0.2.1")]
#![doc(html_root_url = "https://docs.rs/cidr/0.2.2")]
#![allow(clippy::match_like_matches_macro)]

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

0 comments on commit 5fdc64e

Please sign in to comment.