diff --git a/CHANGELOG.md b/CHANGELOG.md index 95278ae..b2094ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [0.3.0] - 2024-09-30 + +- remove short IPv4 address support in `FromStr` implementations +- implement `From` for cidr and inet types +- remove `std` requirement - both `net` and `error` now in `core` +- move to bitstring 0.2 + ## [0.2.3] - 2024-06-25 - `parsers` module: @@ -41,3 +48,4 @@ [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 [0.2.3]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.2...cidr-0.2.3 +[0.3.0]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.3...cidr-0.3.0 diff --git a/Cargo.toml b/Cargo.toml index 62fc32a..d51ba3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cidr" # also bump version in html_root_url in src/lib.rs -version = "0.2.3" +version = "0.3.0" edition = "2021" rust-version = "1.81" authors = ["Stefan Bühler "] diff --git a/src/lib.rs b/src/lib.rs index 1428ce0..8a0dfd6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ #![cfg_attr(feature = "no_unsafe", forbid(unsafe_code))] #![warn(missing_docs)] #![warn(rust_2018_idioms)] -#![doc(html_root_url = "https://docs.rs/cidr/0.2.3")] +#![doc(html_root_url = "https://docs.rs/cidr/0.3.0")] #![allow(clippy::match_like_matches_macro)] //! This library provides types to represent an IP network ([`Cidr`]) or