Prepare 0.23.1 (#2056)

* update versions to 0.23.1

* update readmes for forward reference to 0.24 and Hickory DNS
This commit is contained in:
Benjamin Fry 2023-10-13 18:29:30 -04:00
parent 6cbd26a508
commit 65c5327ef6
10 changed files with 35 additions and 16 deletions

View File

@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](https://semver.org/).
All notes should be prepended with the location of the change, e.g. `(proto)` or `(resolver)`.
## 0.23.1
### Changed
- (all) **NOTICE** This project has been rebranded to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, from 0.24.0 onward.
## 0.23.0
### Fixed

20
Cargo.lock generated
View File

@ -230,7 +230,7 @@ dependencies = [
[[package]]
name = "async-std-resolver"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"async-std",
"async-trait",
@ -1888,7 +1888,7 @@ dependencies = [
[[package]]
name = "trust-dns"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"clap",
"futures-util",
@ -1908,7 +1908,7 @@ dependencies = [
[[package]]
name = "trust-dns-client"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"cfg-if",
"data-encoding",
@ -1930,7 +1930,7 @@ dependencies = [
[[package]]
name = "trust-dns-compatibility"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"data-encoding",
"futures",
@ -1942,7 +1942,7 @@ dependencies = [
[[package]]
name = "trust-dns-integration"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"async-trait",
"futures",
@ -1964,7 +1964,7 @@ dependencies = [
[[package]]
name = "trust-dns-proto"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"async-trait",
"backtrace",
@ -2009,7 +2009,7 @@ dependencies = [
[[package]]
name = "trust-dns-recursor"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"async-recursion",
"async-trait",
@ -2030,7 +2030,7 @@ dependencies = [
[[package]]
name = "trust-dns-resolver"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"cfg-if",
"futures-executor",
@ -2058,7 +2058,7 @@ dependencies = [
[[package]]
name = "trust-dns-server"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"async-trait",
"basic-toml",
@ -2090,7 +2090,7 @@ dependencies = [
[[package]]
name = "trust-dns-util"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"clap",
"console",

View File

@ -15,7 +15,7 @@ members = [
exclude = ["fuzz"]
[workspace.package]
version = "0.23.0"
version = "0.23.1"
authors = ["The contributors to Trust-DNS"]
edition = "2021"
rust-version = "1.67.0"
@ -28,11 +28,11 @@ license = "MIT OR Apache-2.0"
[workspace.dependencies]
# trustdns
trust-dns-client = { version = "0.23.0", path = "crates/client", default-features = false }
trust-dns-recursor = { version = "0.23.0", path = "crates/recursor", default-features = false }
trust-dns-resolver = { version = "0.23.0", path = "crates/resolver", default-features = false }
trust-dns-server = { version = "0.23.0", path = "crates/server", default-features = false }
trust-dns-proto = { version = "0.23.0", path = "crates/proto", default-features = false }
trust-dns-client = { version = "0.23.1", path = "crates/client", default-features = false }
trust-dns-recursor = { version = "0.23.1", path = "crates/recursor", default-features = false }
trust-dns-resolver = { version = "0.23.1", path = "crates/resolver", default-features = false }
trust-dns-server = { version = "0.23.1", path = "crates/server", default-features = false }
trust-dns-proto = { version = "0.23.1", path = "crates/proto", default-features = false }
# logging

View File

@ -1,3 +1,4 @@
**NOTICE** This project has been rebranded to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, this crate/binary has been moved to [hickory-dns](https://crates.io/crates/hickory-dns), from `0.24`
# Overview
Trust-DNS provides a binary for hosting or forwarding DNS zones.

View File

@ -1,3 +1,5 @@
**NOTICE** This project has been rebranded to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, from `0.24` and onward.
# Overview
Trust-DNS Async-Std Resolver is a library which implements the DNS resolver using the Trust-DNS Resolver library.

View File

@ -1,3 +1,5 @@
**NOTICE** This project has been rebranded to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, this crate/binary has been moved to [hickory-client](https://crates.io/crates/hickory-client), from `0.24` and onward.
# Overview
Trust-DNS is a library which implements the DNS protocol and client side functions.

View File

@ -1,3 +1,5 @@
**NOTICE** This project has been rebranded to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, this crate/binary has been moved to [hickory-proto](https://crates.io/crates/hickory-proto), from `0.24` and onward.
# Overview
Trust-DNS Proto is the foundational DNS protocol library and implementation for Trust-DNS. Unless you want to manipulate the DNS packets directly, it is likely not the library you want. Please see Trust-DNS [Resolver](https://crates.io/crates/trust-dns-resolver), [Client](https://crates.io/crates/trust-dns-client), or [Server](https://crates.io/crates/trust-dns-server) for higher level interfaces.

View File

@ -1,3 +1,5 @@
**NOTICE** This project has been rebranded to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, this crate/binary has been moved to [hickory-recursor](https://crates.io/crates/hickory-recursor), from `0.24` and onward.
# Overview
Trust-DNS Recursor is a library which implements recursive resolution for DNS. This is currently experimental, test coverage is low and full scope of tests haven't been determined yet.

View File

@ -1,3 +1,5 @@
**NOTICE** This project has been rebranded to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, this crate/binary has been moved to [hickory-resolver](https://crates.io/crates/hickory-resolver), from `0.24` and onward.
# Overview
Trust-DNS Resolver is a library which implements the DNS resolver using the Trust-DNS Proto library.

View File

@ -1,3 +1,5 @@
**NOTICE** This project has been rebranded to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, this crate/binary has been moved to [hickory-server](https://crates.io/crates/hickory-server), from `0.24` and onward.
# Overview
Trust-DNS Server is a library which implements the zone authoritory functionality.