Skip to content

Commit

Permalink
release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stbuehler committed Jan 18, 2025
1 parent f0b716c commit 6477851
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [0.3.1] - 2025-01-18

- raise serde version to support no-std builds
- enable all Error impls in no-std (actually making std-feature unused)

## [0.3.0] - 2024-09-30

- remove short IPv4 address support in `FromStr` implementations
Expand Down Expand Up @@ -49,3 +54,4 @@
[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
[0.3.1]: https://github.com/stbuehler/rust-cidr/compare/cidr-0.3.0...cidr-0.3.1
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.3.0"
version = "0.3.1"
edition = "2021"
rust-version = "1.81"
authors = ["Stefan Bühler <stbuehler@web.de>"]
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.3.0")]
#![doc(html_root_url = "https://docs.rs/cidr/0.3.1")]
#![allow(clippy::match_like_matches_macro)]

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

0 comments on commit 6477851

Please sign in to comment.