From df7e20c6a248acd99a523ee77e0fd9a4375b0c3f Mon Sep 17 00:00:00 2001 From: Martin Hoffmann Date: Thu, 16 Nov 2023 16:26:19 +0100 Subject: [PATCH] Release 0.9.2. (#243) New * Removed the `Sized` bound for octets types used by the `tsig` module. ([#241] by [@torin-carey]) * Added an impl for `AsRef>` for any message. ([#242] by [@torin-carey]) Bug fixes * Fixed in scanning absolute domain names from a zonefile that resulted in illegal wire data being produced. ([#240] by [@xofyarg)] --- Cargo.toml | 2 +- Changelog.md | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c76ba5bd1..e5f434803 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "domain" -version = "0.9.2-dev" +version = "0.9.2" rust-version = "1.67.0" edition = "2021" authors = ["NLnet Labs "] diff --git a/Changelog.md b/Changelog.md index f6af25d80..2267fce93 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,8 +1,8 @@ # Change Log -## Unreleased next version +## 0.9.2 -Breaking changes +Released 2023-11-16. New @@ -16,8 +16,6 @@ Bug fixes * Fixed in scanning absolute domain names from a zonefile that resulted in illegal wire data being produced. ([#240] by [@xofyarg)] -Other changes - [#240]: https://github.com/NLnetLabs/domain/pull/240 [#241]: https://github.com/NLnetLabs/domain/pull/241 [#242]: https://github.com/NLnetLabs/domain/pull/242