diff --git a/Cargo.toml b/Cargo.toml index 7b749dd74..aa58473a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "domain" -version = "0.8.1-dev" +version = "0.8.1" rust-version = "1.65.0" edition = "2021" authors = ["Martin Hoffmann "] diff --git a/Changelog.md b/Changelog.md index 8fbb0a1b5..91ee49362 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,14 +1,15 @@ # Change Log -## Unreleased next version +## 0.8.1 -Breaking changes +Released 2023-09-18 New * Added a new method `FoundSrvs::into_srvs` that converts the value into an iterator over the found SRV records without resolving them further. - ([#174], [#214]; this was added in 0.7.2 but missing in 0.8.0) + ([#174], [#214] by [@WhyNotHugo]); this was added in 0.7.2 but missing + in 0.8.0) * Added impl of `Borrow>` and `AsRef>` for `Dname<_>`. ([#219] by [@iximeow}], [#225]) * Added `Dname::fmt_with_dot` that can be used when wanting to display a @@ -17,13 +18,12 @@ New Bug Fixes * Fixed trait bounds on `FoundSrvs::into_stream` to make it usable again. - ([#174], [#214]; this was fixed in 0.7.2 but missing in 0.8.0) + ([#174], [#214 by [@WhyNotHugo]]; this was fixed in 0.7.2 but missing in + 0.8.0) * Fixed scanning of domain names that are just the root label. ([#210]) * Fixed `util::base64::SymbolConverter` to also include the final group in the output if there is padding. ([#212]) -Other changes - [#174]: https://github.com/NLnetLabs/domain/pull/174 [#210]: https://github.com/NLnetLabs/domain/pull/210 [#212]: https://github.com/NLnetLabs/domain/pull/212 @@ -31,10 +31,13 @@ Other changes [#219]: https://github.com/NLnetLabs/domain/pull/219 [#225]: https://github.com/NLnetLabs/domain/pull/225 [@iximeow]: https://github.com/iximeow +[@WhyNotHugo]: https://github.com/WhyNotHugo ## 0.8.0 +Released 2023-05-12 + Breaking Changes * The minimal required Rust version is now 1.65. ([#160])