Skip to content

Commit

Permalink
prepare 0.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bluejekyll committed Feb 2, 2022
1 parent e7b5e14 commit 521f2ab
Show file tree
Hide file tree
Showing 16 changed files with 83 additions and 88 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ jobs:
with:
version: ${{ env.CARGO_MAKE_VERSION }}

- name: cargo make all-features
run: cargo make all-features
- name: cargo make no-default-features
run: cargo make no-default-features

- name: cargo make build-bench
if: matrix.version == 'nightly'
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).

All notes should be prepended with the location of the change, e.g. `(proto)` or `(resolver)`.

## 0.20.4

### Fixed

- (all) updated tokio dependencies to 1.16 #1623
- (all) removed audit chrono due to rustsec audit failure (backport) #1623

### Changed

- (all) Increased MSRV to 1.51

## 0.20.3

### Fixed
Expand Down
50 changes: 17 additions & 33 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns"
version = "0.20.3"
version = "0.20.4"
authors = ["Benjamin Fry <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -77,18 +77,18 @@ log = "0.4"
rustls = { version = "0.19", optional = true }
time = "0.3"
tokio = { version = "1.0", features = ["time"] }
trust-dns-client = { version = "0.20.3", path = "../crates/client" }
trust-dns-openssl = { version = "0.20.3", path = "../crates/openssl", optional = true }
trust-dns-proto = { version = "0.20.3", path = "../crates/proto" }
trust-dns-rustls = { version = "0.20.3", path = "../crates/rustls", optional = true }
trust-dns-server = { version = "0.20.3", path = "../crates/server" }
trust-dns-client = { version = "0.20.4", path = "../crates/client" }
trust-dns-openssl = { version = "0.20.4", path = "../crates/openssl", optional = true }
trust-dns-proto = { version = "0.20.4", path = "../crates/proto" }
trust-dns-rustls = { version = "0.20.4", path = "../crates/rustls", optional = true }
trust-dns-server = { version = "0.20.4", path = "../crates/server" }

[dev-dependencies]
env_logger = "0.8"
native-tls = "0.2"
regex = "1.3.4"
trust-dns-proto = { version = "0.20.3", path = "../crates/proto", features = ["testing"] }
trust-dns-native-tls = { version = "0.20.3", path = "../crates/native-tls" }
trust-dns-https = { version = "0.20.3", path = "../crates/https" }
trust-dns-resolver = { version = "0.20.3", path = "../crates/resolver" }
trust-dns-proto = { version = "0.20.4", path = "../crates/proto", features = ["testing"] }
trust-dns-native-tls = { version = "0.20.4", path = "../crates/native-tls" }
trust-dns-https = { version = "0.20.4", path = "../crates/https" }
trust-dns-resolver = { version = "0.20.4", path = "../crates/resolver" }
webpki-roots = "0.21"
6 changes: 3 additions & 3 deletions crates/async-std-resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-std-resolver"
version = "0.20.3"
version = "0.20.4"
authors = ["Benjamin Fry <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -69,8 +69,8 @@ async-trait = "0.1.36"
futures-io = { version = "0.3.5", default-features = false, features = ["std"] }
futures-util = { version = "0.3.5", default-features = false, features = ["std"] }
pin-utils = "0.1.0"
trust-dns-resolver = { version = "0.20.3", path = "../resolver", default-features = false }
trust-dns-resolver = { version = "0.20.4", path = "../resolver", default-features = false }

[dev-dependencies]
async-std = { version = "1.6", features = ["attributes"] }
trust-dns-resolver = { version = "0.20.3", path = "../resolver", default-features = false, features = ["testing"] }
trust-dns-resolver = { version = "0.20.4", path = "../resolver", default-features = false, features = ["testing"] }
6 changes: 3 additions & 3 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-client"
version = "0.20.3"
version = "0.20.4"
authors = ["Benjamin Fry <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -81,8 +81,8 @@ serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "1.0.20"
time = "0.3"
tokio = { version = "1.0", features = ["rt"] }
trust-dns-https = { version = "0.20.3", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.3", path = "../proto", features = ["dnssec"]}
trust-dns-https = { version = "0.20.4", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.4", path = "../proto", features = ["dnssec"]}
webpki = { version = "0.21", optional = true }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/https/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-https"
version = "0.20.3"
version = "0.20.4"
authors = ["Benjamin Fry <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -59,8 +59,8 @@ thiserror = "1.0.20"
tokio = { version = "1.0", features = ["io-util", "net", "rt"] }
tokio-rustls = "0.22.0"
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.20.3", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-rustls = { version = "0.20.3", path = "../rustls", default-features = false }
trust-dns-proto = { version = "0.20.4", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-rustls = { version = "0.20.4", path = "../rustls", default-features = false }
webpki-roots = "0.21"
webpki = "0.21"

Expand Down
4 changes: 2 additions & 2 deletions crates/native-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-native-tls"
version = "0.20.3"
version = "0.20.4"
authors = ["Benjamin Fry <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -53,7 +53,7 @@ native-tls = "0.2"
tokio = "1.0"
tokio-native-tls = "0.3.0"
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.20.3", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-proto = { version = "0.20.4", path = "../proto", features = ["tokio-runtime"], default-features = false }

[dev-dependencies]

Expand Down
4 changes: 2 additions & 2 deletions crates/openssl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-openssl"
version = "0.20.3"
version = "0.20.4"
authors = ["Benjamin Fry <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -52,7 +52,7 @@ futures-util = { version = "0.3.5", default-features = false, features = ["std"]
openssl = { version = "0.10", features = ["v102", "v110"] }
tokio-openssl = "0.6.0"
tokio = "1.0"
trust-dns-proto = { version = "0.20.3", path = "../proto", features = ["openssl"] }
trust-dns-proto = { version = "0.20.4", path = "../proto", features = ["openssl"] }

[dev-dependencies]
openssl = { version = "0.10", features = ["v102", "v110"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-proto"
version = "0.20.3"
version = "0.20.4"
edition = "2018"
authors = ["Benjamin Fry <[email protected]>"]

Expand Down
12 changes: 6 additions & 6 deletions crates/resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-resolver"
version = "0.20.3"
version = "0.20.4"
authors = ["Benjamin Fry <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -81,11 +81,11 @@ tokio = { version = "1.0", optional = true }
tokio-native-tls = { version = "0.3", optional = true }
tokio-openssl = { version = "0.6.0", optional = true }
tokio-rustls = { version = "0.22", optional = true }
trust-dns-https = { version = "0.20.3", path = "../https", optional = true }
trust-dns-native-tls = { version = "0.20.3", path = "../native-tls", optional = true }
trust-dns-openssl = { version = "0.20.3", path = "../openssl", optional = true }
trust-dns-proto = { version = "0.20.3", path = "../proto", default-features = false }
trust-dns-rustls = { version = "0.20.3", path = "../rustls", optional = true }
trust-dns-https = { version = "0.20.4", path = "../https", optional = true }
trust-dns-native-tls = { version = "0.20.4", path = "../native-tls", optional = true }
trust-dns-openssl = { version = "0.20.4", path = "../openssl", optional = true }
trust-dns-proto = { version = "0.20.4", path = "../proto", default-features = false }
trust-dns-rustls = { version = "0.20.4", path = "../rustls", optional = true }
webpki-roots = { version = "0.21", optional = true }

[target.'cfg(windows)'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/rustls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-rustls"
version = "0.20.3"
version = "0.20.4"
authors = ["Benjamin Fry <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -55,7 +55,7 @@ rustls = "0.19"
tokio = { version = "1.0", features = ["io-util", "net"] }
tokio-rustls = { version = "0.22", features = ["early-data"] }
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.20.3", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-proto = { version = "0.20.4", path = "../proto", features = ["tokio-runtime"], default-features = false }
webpki = "0.21"

[dev-dependencies]
Expand Down
Loading

0 comments on commit 521f2ab

Please sign in to comment.