From 412944e97393745dc0d11c224b842131671d4a87 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sun, 7 Jan 2024 20:26:26 +0600 Subject: [PATCH] Prepare release --- ntex-async-std/CHANGES.md | 4 ++++ ntex-async-std/Cargo.toml | 6 +++--- ntex-bytes/Cargo.toml | 2 +- ntex-connect/CHANGES.md | 2 +- ntex-connect/Cargo.toml | 18 +++++++++--------- ntex-glommio/CHANGES.md | 4 ++++ ntex-glommio/Cargo.toml | 6 +++--- ntex-io/CHANGES.md | 2 +- ntex-io/Cargo.toml | 8 ++++---- ntex-macros/Cargo.toml | 2 +- ntex-service/CHANGES.md | 2 +- ntex-service/Cargo.toml | 6 +++--- ntex-tls/CHANGES.md | 2 +- ntex-tls/Cargo.toml | 10 +++++----- ntex-tokio/CHANGES.md | 4 ++++ ntex-tokio/Cargo.toml | 6 +++--- ntex-util/CHANGES.md | 2 +- ntex-util/Cargo.toml | 6 +++--- ntex/CHANGES.md | 2 +- ntex/Cargo.toml | 20 ++++++++++---------- 20 files changed, 63 insertions(+), 51 deletions(-) diff --git a/ntex-async-std/CHANGES.md b/ntex-async-std/CHANGES.md index 7f04447c..1a41de4b 100644 --- a/ntex-async-std/CHANGES.md +++ b/ntex-async-std/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.4.0-b.0] - 2024-01-07 + +* Use "async fn" in trait for Service definition + ## [0.3.2] - 2023-11-22 * Replace async-oneshot with oneshot diff --git a/ntex-async-std/Cargo.toml b/ntex-async-std/Cargo.toml index 330e7074..4b841de1 100644 --- a/ntex-async-std/Cargo.toml +++ b/ntex-async-std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-async-std" -version = "0.4.0" +version = "0.4.0-b.0" authors = ["ntex contributors "] description = "async-std intergration for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -17,8 +17,8 @@ path = "src/lib.rs" [dependencies] ntex-bytes = "0.1.21" -ntex-io = "1.0" -ntex-util = "1.0" +ntex-io = "1.0.0-b.0" +ntex-util = "1.0.0-b.0" log = "0.4" pin-project-lite = "0.2" async-std = { version = "1", features = ["unstable"] } diff --git a/ntex-bytes/Cargo.toml b/ntex-bytes/Cargo.toml index f2628572..3bdf5385 100644 --- a/ntex-bytes/Cargo.toml +++ b/ntex-bytes/Cargo.toml @@ -27,4 +27,4 @@ simdutf8 = { version = "0.1.4", optional = true } [dev-dependencies] serde_test = "1.0" serde_json = "1.0" -ntex = { version = "1.0.0", features = ["tokio"] } +ntex = { version = "1.0.0-b.0", features = ["tokio"] } diff --git a/ntex-connect/CHANGES.md b/ntex-connect/CHANGES.md index 82e987f8..b8913333 100644 --- a/ntex-connect/CHANGES.md +++ b/ntex-connect/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [1.0.0] - 2024-01-0x +## [1.0.0-b.0] - 2024-01-07 * Use "async fn" in trait for Service definition diff --git a/ntex-connect/Cargo.toml b/ntex-connect/Cargo.toml index 63dd77d7..7af1b103 100644 --- a/ntex-connect/Cargo.toml +++ b/ntex-connect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-connect" -version = "1.0.0" +version = "1.0.0-b.0" authors = ["ntex contributors "] description = "ntexwork connect utils for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -34,10 +34,10 @@ glommio = ["ntex-rt/glommio", "ntex-glommio"] async-std = ["ntex-rt/async-std", "ntex-async-std"] [dependencies] -ntex-service = "2.0" -ntex-io = "1.0" -ntex-tls = "1.0" -ntex-util = "1.0" +ntex-service = "2.0.0-b.0" +ntex-io = "1.0.0-b.0" +ntex-tls = "1.0.0-b.0" +ntex-util = "1.0.0-b.0" ntex-bytes = "0.1.21" ntex-http = "0.1" ntex-rt = "0.4.7" @@ -45,9 +45,9 @@ ntex-rt = "0.4.7" log = "0.4" thiserror = "1.0" -ntex-tokio = { version = "0.4", optional = true } -ntex-glommio = { version = "0.4", optional = true } -ntex-async-std = { version = "0.4", optional = true } +ntex-tokio = { version = "0.4.0-b.0", optional = true } +ntex-glommio = { version = "0.4.0-b.0", optional = true } +ntex-async-std = { version = "0.4.0-b.0", optional = true } # openssl tls-openssl = { version="0.10", package = "openssl", optional = true } @@ -59,4 +59,4 @@ webpki-roots = { version = "0.25", optional = true } [dev-dependencies] rand = "0.8" env_logger = "0.10" -ntex = { version = "1.0", features = ["tokio"] } +ntex = { version = "1.0.0-b.0", features = ["tokio"] } diff --git a/ntex-glommio/CHANGES.md b/ntex-glommio/CHANGES.md index d6e1a01e..adee957b 100644 --- a/ntex-glommio/CHANGES.md +++ b/ntex-glommio/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.4.0-b.0] - 2024-01-07 + +* Use "async fn" in trait for Service definition + ## [0.3.1] - 2023-11-22 * Replace async-oneshot with oneshot diff --git a/ntex-glommio/Cargo.toml b/ntex-glommio/Cargo.toml index 7bb5518f..fa930154 100644 --- a/ntex-glommio/Cargo.toml +++ b/ntex-glommio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-glommio" -version = "0.4.0" +version = "0.4.0-b.0" authors = ["ntex contributors "] description = "glommio intergration for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -17,8 +17,8 @@ path = "src/lib.rs" [dependencies] ntex-bytes = "0.1.21" -ntex-io = "1.0" -ntex-util = "1.0" +ntex-io = "1.0.0-b.0" +ntex-util = "1.0.0-b.0" futures-lite = "1.12" log = "0.4" oneshot = { version = "0.1", default-features = false, features = ["async"] } diff --git a/ntex-io/CHANGES.md b/ntex-io/CHANGES.md index 7ec9b44f..d9c9c772 100644 --- a/ntex-io/CHANGES.md +++ b/ntex-io/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [1.0.0] - 2024-01-0x +## [1.0.0-b.0] - 2024-01-07 * Use "async fn" in trait for Service definition diff --git a/ntex-io/Cargo.toml b/ntex-io/Cargo.toml index 33fac379..69d8eb04 100644 --- a/ntex-io/Cargo.toml +++ b/ntex-io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-io" -version = "1.0.0" +version = "1.0.0-b.0" authors = ["ntex contributors "] description = "Utilities for encoding and decoding frames" keywords = ["network", "framework", "async", "futures"] @@ -18,8 +18,8 @@ path = "src/lib.rs" [dependencies] ntex-codec = "0.6.2" ntex-bytes = "0.1.21" -ntex-util = "1.0" -ntex-service = "2.0" +ntex-util = "1.0.0-b.0" +ntex-service = "2.0.0-b.0" bitflags = "2.4" log = "0.4" @@ -29,4 +29,4 @@ pin-project-lite = "0.2" rand = "0.8" env_logger = "0.10" -ntex = { version = "1.0.0", features = ["tokio"] } +ntex = { version = "1.0.0-b.0", features = ["tokio"] } diff --git a/ntex-macros/Cargo.toml b/ntex-macros/Cargo.toml index 3bf023f7..a63be68f 100644 --- a/ntex-macros/Cargo.toml +++ b/ntex-macros/Cargo.toml @@ -16,6 +16,6 @@ syn = { version = "^1", features = ["full", "parsing"] } proc-macro2 = "^1" [dev-dependencies] -ntex = { version = "1.0.0", features = ["tokio"] } +ntex = { version = "1.0.0-b.0", features = ["tokio"] } futures = "0.3" env_logger = "0.10" \ No newline at end of file diff --git a/ntex-service/CHANGES.md b/ntex-service/CHANGES.md index e33c4c3c..55030acd 100644 --- a/ntex-service/CHANGES.md +++ b/ntex-service/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [2.0.0] - 2024-01-xx +## [2.0.0-b.0] - 2024-01-07 * Use "async fn" in trait for Service definition diff --git a/ntex-service/Cargo.toml b/ntex-service/Cargo.toml index 49a6dbdd..baf6f967 100644 --- a/ntex-service/Cargo.toml +++ b/ntex-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-service" -version = "2.0.0" +version = "2.0.0-b.0" authors = ["ntex contributors "] description = "ntex service" keywords = ["network", "framework", "async", "futures"] @@ -20,5 +20,5 @@ pin-project-lite = "0.2.6" slab = "0.4" [dev-dependencies] -ntex = { version = "1.0", features = ["tokio"] } -ntex-util = "1.0.0" +ntex = { version = "1.0.0-b.0", features = ["tokio"] } +ntex-util = "1.0.0-b.0" diff --git a/ntex-tls/CHANGES.md b/ntex-tls/CHANGES.md index 38fd5649..ca9670c8 100644 --- a/ntex-tls/CHANGES.md +++ b/ntex-tls/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [1.0.0] - 2024-01-0x +## [1.0.0-b.0] - 2024-01-07 * Use "async fn" in trait for Service definition diff --git a/ntex-tls/Cargo.toml b/ntex-tls/Cargo.toml index c87ceb4e..0f28c8ae 100644 --- a/ntex-tls/Cargo.toml +++ b/ntex-tls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-tls" -version = "1.0.0" +version = "1.0.0-b.0" authors = ["ntex contributors "] description = "An implementation of SSL streams for ntex backed by OpenSSL" keywords = ["network", "framework", "async", "futures"] @@ -26,9 +26,9 @@ rustls = ["tls_rust"] [dependencies] ntex-bytes = "0.1.21" -ntex-io = "1.0" -ntex-util = "1.0" -ntex-service = "2.0" +ntex-io = "1.0.0-b.0" +ntex-util = "1.0.0-b.0" +ntex-service = "2.0.0-b.0" log = "0.4" pin-project-lite = "0.2" @@ -39,7 +39,7 @@ tls_openssl = { version = "0.10", package = "openssl", optional = true } tls_rust = { version = "0.21", package = "rustls", optional = true } [dev-dependencies] -ntex = { version = "1.0", features = ["openssl", "rustls", "tokio"] } +ntex = { version = "1.0.0-b.0", features = ["openssl", "rustls", "tokio"] } env_logger = "0.10" rustls-pemfile = "1.0" webpki-roots = "0.25" diff --git a/ntex-tokio/CHANGES.md b/ntex-tokio/CHANGES.md index 3516b5f2..6e4b546c 100644 --- a/ntex-tokio/CHANGES.md +++ b/ntex-tokio/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.4.0-b.0] - 2024-01-07 + +* Use "async fn" in trait for Service definition + ## [0.3.1] - 2023-11-12 * Optimize io read task diff --git a/ntex-tokio/Cargo.toml b/ntex-tokio/Cargo.toml index 5ac22d12..c4f49331 100644 --- a/ntex-tokio/Cargo.toml +++ b/ntex-tokio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-tokio" -version = "0.4.0" +version = "0.4.0-b.0" authors = ["ntex contributors "] description = "tokio intergration for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -17,8 +17,8 @@ path = "src/lib.rs" [dependencies] ntex-bytes = "0.1.21" -ntex-io = "1.0" -ntex-util = "1.0" +ntex-io = "1.0.0-b.0" +ntex-util = "1.0.0-b.0" log = "0.4" pin-project-lite = "0.2" tokio = { version = "1", default-features = false, features = ["rt", "net", "sync", "signal"] } diff --git a/ntex-util/CHANGES.md b/ntex-util/CHANGES.md index 6d1256bf..ee11c752 100644 --- a/ntex-util/CHANGES.md +++ b/ntex-util/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [1.0.0] - 2024-01-0x +## [1.0.0-b.0] - 2024-01-07 * Use "async fn" in trait for Service definition diff --git a/ntex-util/Cargo.toml b/ntex-util/Cargo.toml index b36c1c4b..1f832708 100644 --- a/ntex-util/Cargo.toml +++ b/ntex-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-util" -version = "1.0.0" +version = "1.0.0-b.0" authors = ["ntex contributors "] description = "Utilities for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -17,7 +17,7 @@ path = "src/lib.rs" [dependencies] ntex-rt = "0.4.7" -ntex-service = "2.0.0" +ntex-service = "2.0.0-b.0" bitflags = "2.4" fxhash = "0.2.1" log = "0.4" @@ -28,7 +28,7 @@ futures-sink = { version = "0.3", default-features = false, features = ["alloc"] pin-project-lite = "0.2.9" [dev-dependencies] -ntex = { version = "1.0.0", features = ["tokio"] } +ntex = { version = "1.0.0-b.0", features = ["tokio"] } ntex-bytes = "0.1.21" ntex-macros = "0.1.3" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } diff --git a/ntex/CHANGES.md b/ntex/CHANGES.md index c1145e48..a7be2023 100644 --- a/ntex/CHANGES.md +++ b/ntex/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [1.0.0] - 2024-01-0x +## [1.0.0-b.0] - 2024-01-07 * Use "async fn" in trait for Service definition diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 9924ed25..bdeaca80 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex" -version = "1.0.0" +version = "1.0.0-b.0" authors = ["ntex contributors "] description = "Framework for composable network services" readme = "README.md" @@ -49,20 +49,20 @@ async-std = ["ntex-rt/async-std", "ntex-async-std", "ntex-connect/async-std"] [dependencies] ntex-codec = "0.6.2" -ntex-connect = "1.0.0" +ntex-connect = "1.0.0-b.0" ntex-http = "0.1.11" ntex-router = "0.5.2" -ntex-service = "2.0.0" +ntex-service = "2.0.0-b.0" ntex-macros = "0.1.3" -ntex-util = "1.0.0" +ntex-util = "1.0.0-b.0" ntex-bytes = "0.1.21" -ntex-h2 = "0.5.0" +ntex-h2 = "0.5.0-b.0" ntex-rt = "0.4.11" -ntex-io = "1.0.0" -ntex-tls = "1.0.0" -ntex-tokio = { version = "0.4.0", optional = true } -ntex-glommio = { version = "0.4.0", optional = true } -ntex-async-std = { version = "0.4.0", optional = true } +ntex-io = "1.0.0-b.0" +ntex-tls = "1.0.0-b.0" +ntex-tokio = { version = "0.4.0-b.0", optional = true } +ntex-glommio = { version = "0.4.0-b.0", optional = true } +ntex-async-std = { version = "0.4.0-b.0", optional = true } async-channel = "2.1" base64 = "0.21"