Skip to content

Commit

Permalink
Release 0.8.1. (#226)
Browse files Browse the repository at this point in the history
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] 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
  domain name with a dot at the end. ([#210])

Bug Fixes

* Fixed trait bounds on `FoundSrvs::into_stream` to make it usable again.
  ([#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])
  • Loading branch information
partim authored Sep 18, 2023
1 parent 5ea7ad8 commit ddcf5fe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
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

0 comments on commit ddcf5fe

Please sign in to comment.