From 819bf1b22b81cedf26b1e629b3f1c60c787d1bc3 Mon Sep 17 00:00:00 2001 From: Martin Hoffmann Date: Fri, 27 Oct 2023 11:23:17 +0200 Subject: [PATCH] Release 0.9.1. (#239) Bug fixes * Added missing `?Sized` bounds to the octets type for parsing `ZoneRecordData` and `UnknownRecordData`. ([#237] by [@hunts]) --- Cargo.toml | 2 +- Changelog.md | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 34ba716e2..f132637c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "domain" -version = "0.9.1-dev" +version = "0.9.1" rust-version = "1.67.0" edition = "2021" authors = ["NLnet Labs "] diff --git a/Changelog.md b/Changelog.md index 2cec88dcd..324d07e1f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,18 +1,14 @@ # Change Log -## Unrelease next version +## 0.9.1 -Breaking changes - -New +Released 2023-10-27. Bug fixes * Added missing `?Sized` bounds to the octets type for parsing `ZoneRecordData` and `UnknownRecordData`. ([#237] by [@hunts]) -Other changes - [#237]: https://github.com/NLnetLabs/domain/pull/237 [@hunts]: https://github.com/hunts