diff --git a/Cargo.toml b/Cargo.toml index 1eea095..2c6c577 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ipnet" -version = "2.10.0" # Remember to update html_root_url +version = "2.10.1" # Remember to update html_root_url authors = ["Kris Price "] description = "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain." license = "MIT OR Apache-2.0" diff --git a/RELEASES.md b/RELEASES.md index 5528adf..36385fb 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,9 @@ # Releases +## Version 2.10.1 + +* ipnet-2.10.0 Rust crate has executable permission on source files. #59 + ## Version 2.10.0 * Add new_assert implementations #57 diff --git a/src/lib.rs b/src/lib.rs index 42641be..accaeec 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/ipnet/2.10.0")] +#![doc(html_root_url = "https://docs.rs/ipnet/2.10.1")] //! Types for IPv4 and IPv6 network addresses. //! //! This module provides types and useful methods for working with IPv4