Skip to content

Commit 8e974f2

Browse files
committed
release 0.3.0
1 parent 4ffa384 commit 8e974f2

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

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

3+
## [0.3.0] - 2024-09-30
4+
5+
- remove short IPv4 address support in `FromStr` implementations
6+
- implement `From<Ip*Addr>` for cidr and inet types
7+
- remove `std` requirement - both `net` and `error` now in `core`
8+
- move to bitstring 0.2
9+
310
## [0.2.3] - 2024-06-25
411

512
- `parsers` module:
@@ -41,3 +48,4 @@
4148
[0.2.1]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.0...cidr-0.2.1
4249
[0.2.2]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.1...cidr-0.2.2
4350
[0.2.3]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.2...cidr-0.2.3
51+
[0.3.0]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.3...cidr-0.3.0

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.3"
4+
version = "0.3.0"
55
edition = "2021"
66
rust-version = "1.81"
77
authors = ["Stefan Bühler <[email protected]>"]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#![cfg_attr(feature = "no_unsafe", forbid(unsafe_code))]
44
#![warn(missing_docs)]
55
#![warn(rust_2018_idioms)]
6-
#![doc(html_root_url = "https://docs.rs/cidr/0.2.3")]
6+
#![doc(html_root_url = "https://docs.rs/cidr/0.3.0")]
77
#![allow(clippy::match_like_matches_macro)]
88

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

0 commit comments

Comments
 (0)