diff --git a/ntex-codec/CHANGES.md b/ntex-codec/CHANGES.md index 31264196..84a0ca4a 100644 --- a/ntex-codec/CHANGES.md +++ b/ntex-codec/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.6.2] - 2022-01-30 + +* Add BytesVec support + ## [0.6.1] - 2022-01-17 * Removed unused Decoder::decode_eof() method diff --git a/ntex-io/CHANGES.md b/ntex-io/CHANGES.md index e601c013..2216766c 100644 --- a/ntex-io/CHANGES.md +++ b/ntex-io/CHANGES.md @@ -1,8 +1,8 @@ # Changes -## [0.1.7] - 2022-01-xx +## [0.1.7] - 2022-01-30 -* Add BytesVec type +* Use BytesVec type for buffers and Filter trait ## [0.1.6] - 2022-01-27 diff --git a/ntex-tls/CHANGES.md b/ntex-tls/CHANGES.md index 7001aded..1c9a009d 100644 --- a/ntex-tls/CHANGES.md +++ b/ntex-tls/CHANGES.md @@ -1,9 +1,11 @@ # Changes -## [0.1.3] - 2022-01-27 +## [0.1.3] - 2022-01-30 * Add PeerCert and PeerCertChain for rustls +* Update to ntex-io 0.1.7 + ## [0.1.2] - 2022-01-12 * Update Filter trait usage diff --git a/ntex-tls/Cargo.toml b/ntex-tls/Cargo.toml index acbfc767..cb25e63c 100644 --- a/ntex-tls/Cargo.toml +++ b/ntex-tls/Cargo.toml @@ -25,9 +25,9 @@ openssl = ["tls_openssl"] rustls = ["tls_rust"] [dependencies] -ntex-bytes = "0.1.9" -ntex-io = "0.1.3" -ntex-util = "0.1.9" +ntex-bytes = "0.1.11" +ntex-io = "0.1.7" +ntex-util = "0.1.13" ntex-service = "0.3.1" pin-project-lite = "0.2" @@ -38,7 +38,7 @@ tls_openssl = { version="0.10", package = "openssl", optional = true } tls_rust = { version = "0.20", package = "rustls", optional = true } [dev-dependencies] -ntex = { version = "0.5.0", features = ["openssl", "rustls"] } +ntex = { version = "0.5", features = ["openssl", "rustls"] } log = "0.4" env_logger = "0.9" rustls-pemfile = { version = "0.2" }