bump versions

This commit is contained in:
Benjamin Fry 2017-09-26 22:42:58 -07:00
parent 4d4e318d63
commit a89bf1da5e
8 changed files with 29 additions and 25 deletions

View File

@ -3,7 +3,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.11.3
## 0.12.0
### Fixed
- Server was not properly signing zone after fresh start
### Added

28
Cargo.lock generated
View File

@ -1159,7 +1159,7 @@ dependencies = [
[[package]]
name = "trust-dns"
version = "0.11.4"
version = "0.12.0"
dependencies = [
"chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"data-encoding 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1188,7 +1188,7 @@ dependencies = [
"futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
"openssl 0.9.19 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
"trust-dns 0.11.4",
"trust-dns 0.12.0",
]
[[package]]
@ -1204,25 +1204,25 @@ dependencies = [
"rand 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
"rusqlite 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-core 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
"trust-dns 0.11.4",
"trust-dns-resolver 0.5.1",
"trust-dns-server 0.10.9",
"trust-dns 0.12.0",
"trust-dns-resolver 0.6.0",
"trust-dns-server 0.12.0",
]
[[package]]
name = "trust-dns-native-tls"
version = "0.1.4"
version = "0.1.5"
dependencies = [
"futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
"native-tls 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-core 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-tls 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"trust-dns 0.11.4",
"trust-dns 0.12.0",
]
[[package]]
name = "trust-dns-resolver"
version = "0.5.1"
version = "0.6.0"
dependencies = [
"futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
"ipconfig 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1232,24 +1232,24 @@ dependencies = [
"lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-core 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
"trust-dns 0.11.4",
"trust-dns 0.12.0",
]
[[package]]
name = "trust-dns-rustls"
version = "0.1.4"
version = "0.1.5"
dependencies = [
"futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
"openssl 0.9.19 (registry+https://github.com/rust-lang/crates.io-index)",
"rustls 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-core 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-rustls 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"trust-dns 0.11.4",
"trust-dns 0.12.0",
]
[[package]]
name = "trust-dns-server"
version = "0.10.9"
version = "0.12.0"
dependencies = [
"backtrace 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1268,8 +1268,8 @@ dependencies = [
"tokio-openssl 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-tls 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"toml 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
"trust-dns 0.11.4",
"trust-dns-native-tls 0.1.4",
"trust-dns 0.12.0",
"trust-dns-native-tls 0.1.5",
]
[[package]]

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns"
version = "0.11.4"
version = "0.12.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-native-tls"
version = "0.1.4"
version = "0.1.5"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -49,7 +49,7 @@ native-tls = "^0.1"
tokio-core = "^0.1"
tokio-tls = "^0.1"
# disables default features, i.e. openssl...
trust-dns = { version = "^0.11.0", path = "../client", default-features = false }
trust-dns = { version = "^0.12", path = "../client", default-features = false }
## Commented out until MTLS support is complete
# [target.'cfg(target_os = "linux")'.dependencies]

View File

@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.5.1
## 0.6.0
### Changed

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-resolver"
version = "0.5.1"
version = "0.6.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -50,7 +50,7 @@ log = "^0.3.5"
lru-cache = "^0.1.1"
regex = "0.2.1"
tokio-core = "^0.1"
trust-dns = { version = "^0.11.4", path = "../client" }
trust-dns = { version = "^0.12.0", path = "../client" }
[target.'cfg(all(windows, target_arch = "x86_64"))'.dependencies]
ipconfig = "^0.1.1"

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-rustls"
version = "0.1.4"
version = "0.1.5"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -51,7 +51,7 @@ rustls = "^0.11.0"
tokio-core = "^0.1"
tokio-rustls = "^0.4"
# disables default features, i.e. openssl...
trust-dns = { version = "^0.11.0", path = "../client", default-features = false }
trust-dns = { version = "^0.12", path = "../client", default-features = false }
[dev-dependencies]
openssl = { version = "^0.9.8", features = ["v102", "v110"] }

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-server"
version = "0.10.9"
version = "0.12.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -72,7 +72,7 @@ time = "^0.1"
tokio-core = "^0.1"
tokio-openssl = "^0.1"
toml = "^0.1"
trust-dns = { version = "^0.11.0", path = "../client" }
trust-dns = { version = "^0.12", path = "../client" }
[dev-dependencies]
native-tls = "^0.1"