Skip to content

Commit

Permalink
prepare 0.20.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bluejekyll committed Apr 20, 2021
1 parent f8ea42e commit 9015c8e
Show file tree
Hide file tree
Showing 15 changed files with 67 additions and 67 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ All notes should be prepended with the location of the change, e.g. `(proto)` or

### Fixed

- (proto) Panic on bad length in SVCB for record length
- (proto) Panic on bad length in SVCB for record length #1465

## 0.20.1

Expand Down
26 changes: 13 additions & 13 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.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -77,18 +77,18 @@ futures = { version = "0.3.5", default-features = false, features = ["std"] }
log = "0.4"
rustls = { version = "0.19", optional = true }
tokio = { version = "1.0", features = ["time"] }
trust-dns-client = { version = "0.20.1", path = "../crates/client" }
trust-dns-openssl = { version = "0.20.1", path = "../crates/openssl", optional = true }
trust-dns-proto = { version = "0.20.1", path = "../crates/proto" }
trust-dns-rustls = { version = "0.20.1", path = "../crates/rustls", optional = true }
trust-dns-server = { version = "0.20.1", path = "../crates/server" }
trust-dns-client = { version = "0.20.2", path = "../crates/client" }
trust-dns-openssl = { version = "0.20.2", path = "../crates/openssl", optional = true }
trust-dns-proto = { version = "0.20.2", path = "../crates/proto" }
trust-dns-rustls = { version = "0.20.2", path = "../crates/rustls", optional = true }
trust-dns-server = { version = "0.20.2", path = "../crates/server" }

[dev-dependencies]
env_logger = "0.8"
native-tls = "0.2"
regex = "1.3.4"
trust-dns-proto = { version = "0.20.1", path = "../crates/proto", features = ["testing"] }
trust-dns-native-tls = { version = "0.20.1", path = "../crates/native-tls" }
trust-dns-https = { version = "0.20.1", path = "../crates/https" }
trust-dns-resolver = { version = "0.20.1", path = "../crates/resolver" }
trust-dns-proto = { version = "0.20.2", path = "../crates/proto", features = ["testing"] }
trust-dns-native-tls = { version = "0.20.2", path = "../crates/native-tls" }
trust-dns-https = { version = "0.20.2", path = "../crates/https" }
trust-dns-resolver = { version = "0.20.2", 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.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
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.1", path = "../resolver", default-features = false }
trust-dns-resolver = { version = "0.20.2", path = "../resolver", default-features = false }

[dev-dependencies]
async-std = { version = "1.6", features = ["attributes"] }
trust-dns-resolver = { version = "0.20.1", path = "../resolver", default-features = false, features = ["testing"] }
trust-dns-resolver = { version = "0.20.2", 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.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -81,8 +81,8 @@ rustls = { version = "0.19", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "1.0.20"
tokio = { version = "1.0", features = ["rt"] }
trust-dns-https = { version = "0.20.1", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.1", path = "../proto", features = ["dnssec"]}
trust-dns-https = { version = "0.20.2", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.2", 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.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
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.1", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-rustls = { version = "0.20.1", path = "../rustls", default-features = false }
trust-dns-proto = { version = "0.20.2", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-rustls = { version = "0.20.2", 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.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
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.1", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-proto = { version = "0.20.2", 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.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
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.1", path = "../proto", features = ["openssl"] }
trust-dns-proto = { version = "0.20.2", 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.1"
version = "0.20.2"
edition = "2018"
authors = ["Benjamin Fry <benjaminfry@me.com>"]

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.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
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.1", path = "../https", optional = true }
trust-dns-native-tls = { version = "0.20.1", path = "../native-tls", optional = true }
trust-dns-openssl = { version = "0.20.1", path = "../openssl", optional = true }
trust-dns-proto = { version = "0.20.1", path = "../proto", default-features = false }
trust-dns-rustls = { version = "0.20.1", path = "../rustls", optional = true }
trust-dns-https = { version = "0.20.2", path = "../https", optional = true }
trust-dns-native-tls = { version = "0.20.2", path = "../native-tls", optional = true }
trust-dns-openssl = { version = "0.20.2", path = "../openssl", optional = true }
trust-dns-proto = { version = "0.20.2", path = "../proto", default-features = false }
trust-dns-rustls = { version = "0.20.2", 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.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
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.1", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-proto = { version = "0.20.2", path = "../proto", features = ["tokio-runtime"], default-features = false }
webpki = "0.21"

[dev-dependencies]
Expand Down
14 changes: 7 additions & 7 deletions crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-server"
version = "0.20.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -91,9 +91,9 @@ tokio = { version = "1.0", features = ["net"] }
tokio-openssl = { version = "0.6.0", optional = true }
tokio-rustls = { version = "0.22", optional = true }
toml = "0.5"
trust-dns-client= { version = "0.20.1", path = "../client" }
trust-dns-https = { version = "0.20.1", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.1", path = "../proto" }
trust-dns-openssl = { version = "0.20.1", path = "../openssl", optional = true }
trust-dns-resolver = { version = "0.20.1", path = "../resolver", features = ["serde-config"], optional = true }
trust-dns-rustls = { version = "0.20.1", path = "../rustls", optional = true }
trust-dns-client= { version = "0.20.2", path = "../client" }
trust-dns-https = { version = "0.20.2", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.2", path = "../proto" }
trust-dns-openssl = { version = "0.20.2", path = "../openssl", optional = true }
trust-dns-resolver = { version = "0.20.2", path = "../resolver", features = ["serde-config"], optional = true }
trust-dns-rustls = { version = "0.20.2", path = "../rustls", optional = true }
4 changes: 2 additions & 2 deletions tests/compatibility-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-compatibility"
version = "0.20.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -52,4 +52,4 @@ env_logger = "0.8"
futures = "0.3.5"
openssl = { version = "0.10", features = ["v102", "v110"] }
rand = "0.8"
trust-dns-client= { version = "0.20.1", path="../../crates/client", features = ["dnssec-openssl"] }
trust-dns-client= { version = "0.20.2", path="../../crates/client", features = ["dnssec-openssl"] }
16 changes: 8 additions & 8 deletions tests/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-integration"
version = "0.20.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -78,14 +78,14 @@ rand = "0.8"
rusqlite = { version = "0.24.0", features = ["bundled"] }
rustls = "0.19"
tokio = { version = "1.0", features = ["time", "rt"] }
trust-dns-client= { version = "0.20.1", path = "../../crates/client" }
trust-dns-https = { version = "0.20.1", path = "../../crates/https" }
trust-dns-openssl = { version = "0.20.1", path = "../../crates/openssl" }
trust-dns-proto = { version = "0.20.1", path = "../../crates/proto", features = ["testing"] }
trust-dns-resolver = { version = "0.20.1", path = "../../crates/resolver" }
trust-dns-rustls = { version = "0.20.1", path = "../../crates/rustls" }
trust-dns-client= { version = "0.20.2", path = "../../crates/client" }
trust-dns-https = { version = "0.20.2", path = "../../crates/https" }
trust-dns-openssl = { version = "0.20.2", path = "../../crates/openssl" }
trust-dns-proto = { version = "0.20.2", path = "../../crates/proto", features = ["testing"] }
trust-dns-resolver = { version = "0.20.2", path = "../../crates/resolver" }
trust-dns-rustls = { version = "0.20.2", path = "../../crates/rustls" }
# TODO: fixup tests to not require openssl
trust-dns-server = { version = "0.20.1", path = "../../crates/server" }
trust-dns-server = { version = "0.20.2", path = "../../crates/server" }
webpki-roots = { version = "0.21", optional = true }

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-util"
version = "0.20.1"
version = "0.20.2"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -59,9 +59,9 @@ clap = "2.33.1"
console = "0.14.0"
data-encoding = "2.2.0"
env_logger = { version = "0.8.1", features = ["termcolor", "humantime", "atty"] }
trust-dns-client= { version = "0.20.1", features = ["dnssec-openssl"], path = "../crates/client" }
trust-dns-proto = { version = "0.20.1", features = ["dnssec-openssl"], path = "../crates/proto" }
trust-dns-resolver = { version = "0.20.1", features = ["dnssec-openssl"], path = "../crates/resolver" }
trust-dns-client= { version = "0.20.2", features = ["dnssec-openssl"], path = "../crates/client" }
trust-dns-proto = { version = "0.20.2", features = ["dnssec-openssl"], path = "../crates/proto" }
trust-dns-resolver = { version = "0.20.2", features = ["dnssec-openssl"], path = "../crates/resolver" }
log = "0.4"
openssl = { version = "0.10", features = ["v102", "v110"] }
structopt = "0.3"
Expand Down

0 comments on commit 9015c8e

Please sign in to comment.