Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release 0.8.1. #226

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down
15 changes: 9 additions & 6 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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<Dname<[u8]>>` and `AsRef<Dname<[u8]>>` for
`Dname<_>`. ([#219] by [@iximeow}], [#225])
* Added `Dname::fmt_with_dot` that can be used when wanting to display a
Expand All @@ -17,24 +18,26 @@ 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
[#214]: https://github.com/NLnetLabs/domain/pull/214
[#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])
Expand Down
Loading