Skip to content

Commit 6477851

Browse files
committed
release 0.3.1
1 parent f0b716c commit 6477851

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## [0.3.1] - 2025-01-18
4+
5+
- raise serde version to support no-std builds
6+
- enable all Error impls in no-std (actually making std-feature unused)
7+
38
## [0.3.0] - 2024-09-30
49

510
- remove short IPv4 address support in `FromStr` implementations
@@ -49,3 +54,4 @@
4954
[0.2.2]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.1...cidr-0.2.2
5055
[0.2.3]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.2...cidr-0.2.3
5156
[0.3.0]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.3...cidr-0.3.0
57+
[0.3.1]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.3.0...cidr-0.3.1

Cargo.toml

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

src/lib.rs

+1-1
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.3.0")]
6+
#![doc(html_root_url = "https://docs.rs/cidr/0.3.1")]
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)