mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-01 20:07:39 +03:00
Prepare release
This commit is contained in:
parent
868c0324f7
commit
93fe6d9ee8
4 changed files with 13 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue