From 65c5327ef6b8dbda92654837b8b5cb31fa0000ad Mon Sep 17 00:00:00 2001 From: Benjamin Fry Date: Fri, 13 Oct 2023 18:29:30 -0400 Subject: [PATCH] Prepare 0.23.1 (#2056) * update versions to 0.23.1 * update readmes for forward reference to 0.24 and Hickory DNS --- CHANGELOG.md | 6 ++++++ Cargo.lock | 20 ++++++++++---------- Cargo.toml | 12 ++++++------ bin/README.md | 1 + crates/async-std-resolver/README.md | 2 ++ crates/client/README.md | 2 ++ crates/proto/README.md | 2 ++ crates/recursor/README.md | 2 ++ crates/resolver/README.md | 2 ++ crates/server/README.md | 2 ++ 10 files changed, 35 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f1d8207..95da3941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 03dcf360..2fb65a4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 9abbab48..d1df4269 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/bin/README.md b/bin/README.md index 46e7893f..bb3bef50 100644 --- a/bin/README.md +++ b/bin/README.md @@ -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. diff --git a/crates/async-std-resolver/README.md b/crates/async-std-resolver/README.md index 6deda75c..b0c46dd9 100644 --- a/crates/async-std-resolver/README.md +++ b/crates/async-std-resolver/README.md @@ -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. diff --git a/crates/client/README.md b/crates/client/README.md index 3295849a..ab12febc 100644 --- a/crates/client/README.md +++ b/crates/client/README.md @@ -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. diff --git a/crates/proto/README.md b/crates/proto/README.md index 123f8156..4cc13e1d 100644 --- a/crates/proto/README.md +++ b/crates/proto/README.md @@ -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. diff --git a/crates/recursor/README.md b/crates/recursor/README.md index 65d8ff18..eebd97a4 100644 --- a/crates/recursor/README.md +++ b/crates/recursor/README.md @@ -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. diff --git a/crates/resolver/README.md b/crates/resolver/README.md index 0e2c8550..6ce48350 100644 --- a/crates/resolver/README.md +++ b/crates/resolver/README.md @@ -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. diff --git a/crates/server/README.md b/crates/server/README.md index 21ebd9f2..489e886d 100644 --- a/crates/server/README.md +++ b/crates/server/README.md @@ -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.