Skip to content

Commit

Permalink
bump version to 0.23.0-alpha.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bluejekyll committed Aug 2, 2023
1 parent 3f9a68c commit ae1428c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 16 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -9,6 +9,7 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or

### Fixed

- (proto) Fix truncation for UDP #1975 by nmittler
- (proto) avoid panicking in parse_time() #1964 by djc
- (server) Merge up deny response in requests to server #1954 by djc
- (proto) remove duplicate is_soa function #1948 by mattsse
Expand Down Expand Up @@ -43,6 +44,10 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or

### Changed

- (resolver) fix(resolver): correct ttl from lru cache #1984 by iberryful
- (ci) Use dtolnay/rust-toolchain #1993 by waywardmonkeys
- (all) update the minimum required openssl version #1979 by bluejekyll
- (bin) Print offending bind error in panic message #1971 by wprzytula
- (resolver) Provider API Redesign #1938 by XOR-op
- (all) create default rules for justfile (changed from cargo-make to justfiles) #1951 by bluejekyll
- (all) Bump log to v0.4.18 #1949 by daxpedda
Expand Down Expand Up @@ -86,6 +91,8 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or

### Added

- (resolver) Add Google DoT and DoH to ResolverConfig #1989 by daxpedda
- (server) Adding graceful shutdown to server #1977 by nmittler
- (all) add an html coverage report for local review of coverage data #1959 by bluejekyll
- (resolver) Add the possibility to shuffle NameServers #1920 by Edu4rdSHL
- (resolver) add test for connecting DoH with pure IP Address #1936 by mokeyish
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
Expand Up @@ -15,7 +15,7 @@ members = [
exclude = ["fuzz"]

[workspace.package]
version = "0.23.0-alpha.4"
version = "0.23.0-alpha.5"
authors = ["The contributors to Trust-DNS"]
edition = "2021"
rust-version = "1.64.0"
Expand All @@ -28,11 +28,11 @@ license = "MIT OR Apache-2.0"

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


# logging
Expand Down

0 comments on commit ae1428c

Please sign in to comment.