Skip to content

Commit

Permalink
prepare 0.23.0-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bluejekyll authored and djc committed Jun 2, 2023
1 parent 2d352ae commit 710d562
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 16 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or

### Fixed

- (server) Merge up deny response in requests to server #1954
- (proto) remove duplicate is_soa function #1948 by mattsse
- (resolver) Fix minimal tokio version requirement #1931 by Gelbpunkt
- (all) Fix bench errors in rust-analyzer #1777 by jeff-hiner
- (all) Regenerate the test SSL certificates #1781 by ssinger
- (all) Fix some spelling errors #1783 by nhurley3
Expand Down Expand Up @@ -39,6 +42,12 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or

### Changed

- (all) Bump log to v0.4.18 #1949 by daxpedda
- (proto) Make RData::read() API public #1945 by djc
- (all) Replace lazy_static with once_cell #1944 by daxpedda
- (resolver) Return Self from AsyncResolver::new() #1942 by daxpedda
- (all) Use default-features = false for quinn #1941 by daxpedda
- (all) remove the direct dependency to quinn-udp #1935 by zh-jq
- (resolver) Order name servers by SRTT #1784 by nhurley3
- (resolver) resolver: use errors' Display impl #1785 by hdhoang
- (proto) NameIter use a u8 for start/end. #1787 by darnuria
Expand Down Expand Up @@ -74,6 +83,8 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or

### Added

- (resolver) add test for connecting DoH with pure IP Address #1936 by mokeyish
- (resolver) add NameServerConfigGroup::from_ips_quic #1929 by zh-jq
- (resolve) Add --reverse, --file and --interval to util/resolve #1807 by cunha
- (client) TSIG documenting client tsig code + update rfc link #1810 by darnuria
- (client) Create dedicated Errors types for Tsig error case #1811 by darnuria
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
exclude = ["fuzz"]

[workspace.package]
version = "0.23.0-alpha.2"
version = "0.23.0-alpha.3"
authors = ["The contributors to Trust-DNS"]
edition = "2021"
rust-version = "1.64.0"
Expand All @@ -29,11 +29,11 @@ license = "MIT/Apache-2.0"

[workspace.dependencies]
# trustdns
trust-dns-client = { version = "0.23.0-alpha.2", path = "crates/client", default-features = false }
trust-dns-recursor = { version = "0.23.0-alpha.2", path = "crates/recursor", default-features = false }
trust-dns-resolver = { version = "0.23.0-alpha.2", path = "crates/resolver", default-features = false }
trust-dns-server = { version = "0.23.0-alpha.2", path = "crates/server", default-features = false }
trust-dns-proto = { version = "0.23.0-alpha.2", path = "crates/proto", default-features = false }
trust-dns-client = { version = "0.23.0-alpha.3", path = "crates/client", default-features = false }
trust-dns-recursor = { version = "0.23.0-alpha.3", path = "crates/recursor", default-features = false }
trust-dns-resolver = { version = "0.23.0-alpha.3", path = "crates/resolver", default-features = false }
trust-dns-server = { version = "0.23.0-alpha.3", path = "crates/server", default-features = false }
trust-dns-proto = { version = "0.23.0-alpha.3", path = "crates/proto", default-features = false }


# logging
Expand Down

0 comments on commit 710d562

Please sign in to comment.