Skip to content

Commit

Permalink
release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stbuehler committed Sep 30, 2024
1 parent 4ffa384 commit 8e974f2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [0.3.0] - 2024-09-30

- remove short IPv4 address support in `FromStr` implementations
- implement `From<Ip*Addr>` 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:
Expand Down Expand Up @@ -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
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.3"
version = "0.3.0"
edition = "2021"
rust-version = "1.81"
authors = ["Stefan Bühler <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8e974f2

Please sign in to comment.