Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Jun 16, 2023
1 parent b8cb1ff commit 1b19971
Show file tree
Hide file tree
Showing 20 changed files with 54 additions and 54 deletions.
2 changes: 1 addition & 1 deletion ntex-async-std/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [0.3.0] - 2023-06-xx
## [0.3.0-beta.0] - 2023-06-16

* Migrate to ntex-service 1.2

Expand Down
6 changes: 3 additions & 3 deletions ntex-async-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-async-std"
version = "0.3.0"
version = "0.3.0-beta.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "async-std intergration for ntex framework"
keywords = ["network", "framework", "async", "futures"]
Expand All @@ -17,8 +17,8 @@ path = "src/lib.rs"

[dependencies]
ntex-bytes = "0.1.19"
ntex-io = "0.3.0"
ntex-util = "0.3.0"
ntex-io = "0.3.0-beta.0"
ntex-util = "0.3.0-beta.0"
async-oneshot = "0.5.0"
log = "0.4"
pin-project-lite = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion ntex-bytes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ simdutf8 = { version = "0.1.4", optional = true }
[dev-dependencies]
serde_test = "1.0"
serde_json = "1.0"
ntex = { version = "0.7.0", features = ["tokio"] }
ntex = { version = "0.7.0-beta.0", features = ["tokio"] }
2 changes: 1 addition & 1 deletion ntex-connect/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [0.3.0] - 2023-06-xx
## [0.3.0-beta.0] - 2023-06-16

* Migrate to ntex-service 1.2

Expand Down
18 changes: 9 additions & 9 deletions ntex-connect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-connect"
version = "0.3.0"
version = "0.3.0-beta.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "ntexwork connect utils for ntex framework"
keywords = ["network", "framework", "async", "futures"]
Expand Down Expand Up @@ -34,19 +34,19 @@ glommio = ["ntex-rt/glommio", "ntex-glommio"]
async-std = ["ntex-rt/async-std", "ntex-async-std"]

[dependencies]
ntex-service = "1.2.0"
ntex-service = "1.2.0-beta.0"
ntex-bytes = "0.1.19"
ntex-http = "0.1.8"
ntex-io = "0.3.0"
ntex-io = "0.3.0-beta.0"
ntex-rt = "0.4.7"
ntex-tls = "0.3.0"
ntex-util = "0.3.0"
ntex-tls = "0.3.0-beta.0"
ntex-util = "0.3.0-beta.0"
log = "0.4"
thiserror = "1.0"

ntex-tokio = { version = "0.3.0", optional = true }
ntex-glommio = { version = "0.3.0", optional = true }
ntex-async-std = { version = "0.3.0", optional = true }
ntex-tokio = { version = "0.3.0-beta.0", optional = true }
ntex-glommio = { version = "0.3.0-beta.0", optional = true }
ntex-async-std = { version = "0.3.0-beta.0", optional = true }

# openssl
tls-openssl = { version="0.10", package = "openssl", optional = true }
Expand All @@ -58,4 +58,4 @@ webpki-roots = { version = "0.23", optional = true }
[dev-dependencies]
rand = "0.8"
env_logger = "0.10"
ntex = { version = "0.7.0", features = ["tokio"] }
ntex = { version = "0.7.0-beta.0", features = ["tokio"] }
2 changes: 1 addition & 1 deletion ntex-glommio/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [0.3.0] - 2023-06-xx
## [0.3.0-beta.0] - 2023-06-16

* Migrate to ntex-service 1.2

Expand Down
6 changes: 3 additions & 3 deletions ntex-glommio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-glommio"
version = "0.3.0"
version = "0.3.0-beta.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "glommio intergration for ntex framework"
keywords = ["network", "framework", "async", "futures"]
Expand All @@ -17,8 +17,8 @@ path = "src/lib.rs"

[dependencies]
ntex-bytes = "0.1.19"
ntex-io = "0.3.0"
ntex-util = "0.3.0"
ntex-io = "0.3.0-beta.0"
ntex-util = "0.3.0-beta.0"
async-oneshot = "0.5.0"
futures-lite = "1.12"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion ntex-io/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [0.3.0] - 2023-06-xx
## [0.3.0-beta.0] - 2023-06-16

* Migrate to ntex-service 1.2

Expand Down
8 changes: 4 additions & 4 deletions ntex-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-io"
version = "0.3.0"
version = "0.3.0-beta.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for encoding and decoding frames"
keywords = ["network", "framework", "async", "futures"]
Expand All @@ -18,8 +18,8 @@ path = "src/lib.rs"
[dependencies]
ntex-codec = "0.6.2"
ntex-bytes = "0.1.19"
ntex-util = "0.3.0"
ntex-service = "1.2.0"
ntex-util = "0.3.0-beta.0"
ntex-service = "1.2.0-beta.0"

bitflags = "1.3"
log = "0.4"
Expand All @@ -29,4 +29,4 @@ pin-project-lite = "0.2"
rand = "0.8"
env_logger = "0.10"

ntex = { version = "0.7.0", features = ["tokio"] }
ntex = { version = "0.7.0-beta.0", features = ["tokio"] }
2 changes: 1 addition & 1 deletion ntex-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ syn = { version = "^1", features = ["full", "parsing"] }
proc-macro2 = "^1"

[dev-dependencies]
ntex = { version = "0.7.0", features = ["tokio"] }
ntex = { version = "0.7.0-beta.0", features = ["tokio"] }
futures = "0.3"
env_logger = "0.10"
2 changes: 1 addition & 1 deletion ntex-service/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [1.2.0] - 2023-06-xx
## [1.2.0-beta.0] - 2023-06-16

* Enforce service readiness during call

Expand Down
6 changes: 3 additions & 3 deletions ntex-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-service"
version = "1.2.0"
version = "1.2.0-beta.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex service"
keywords = ["network", "framework", "async", "futures"]
Expand All @@ -20,5 +20,5 @@ pin-project-lite = "0.2.6"
slab = "0.4"

[dev-dependencies]
ntex = { version = "0.7.0", features = ["tokio"] }
ntex-util = "0.3.0"
ntex = { version = "0.7.0-beta.0", features = ["tokio"] }
ntex-util = "0.3.0-beta.0"
2 changes: 1 addition & 1 deletion ntex-tls/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [0.3.0] - 2023-06-xx
## [0.3.0-beta.0] - 2023-06-16

* Migrate to ntex-service 1.2

Expand Down
10 changes: 5 additions & 5 deletions ntex-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-tls"
version = "0.3.0"
version = "0.3.0-beta.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "An implementation of SSL streams for ntex backed by OpenSSL"
keywords = ["network", "framework", "async", "futures"]
Expand All @@ -26,9 +26,9 @@ rustls = ["tls_rust"]

[dependencies]
ntex-bytes = "0.1.19"
ntex-io = "0.3.0"
ntex-util = "0.3.0"
ntex-service = "1.2.0"
ntex-io = "0.3.0-beta.0"
ntex-util = "0.3.0-beta.0"
ntex-service = "1.2.0-beta.0"
log = "0.4"
pin-project-lite = "0.2"

Expand All @@ -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 = "0.7.0", features = ["openssl", "rustls", "tokio"] }
ntex = { version = "0.7.0-beta.0", features = ["openssl", "rustls", "tokio"] }
env_logger = "0.10"
rustls-pemfile = { version = "1.0" }
webpki-roots = { version = "0.23" }
2 changes: 1 addition & 1 deletion ntex-tokio/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [0.3.0] - 2023-06-xx
## [0.3.0-beta.0] - 2023-06-16

* Migrate to ntex-service 1.2

Expand Down
6 changes: 3 additions & 3 deletions ntex-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-tokio"
version = "0.3.0"
version = "0.3.0-beta.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "tokio intergration for ntex framework"
keywords = ["network", "framework", "async", "futures"]
Expand All @@ -17,8 +17,8 @@ path = "src/lib.rs"

[dependencies]
ntex-bytes = "0.1.19"
ntex-io = "0.3.0"
ntex-util = "0.3.0"
ntex-io = "0.3.0-beta.0"
ntex-util = "0.3.0-beta.0"
log = "0.4"
pin-project-lite = "0.2"
tokio = { version = "1", default-features = false, features = ["rt", "net", "sync", "signal"] }
2 changes: 1 addition & 1 deletion ntex-util/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [0.3.0] - 2023-06-xx
## [0.3.0-beta.0] - 2023-06-16

* Upgrade to ntex-service 1.2

Expand Down
6 changes: 3 additions & 3 deletions ntex-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-util"
version = "0.3.0"
version = "0.3.0-beta.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for ntex framework"
keywords = ["network", "framework", "async", "futures"]
Expand All @@ -17,7 +17,7 @@ path = "src/lib.rs"

[dependencies]
ntex-rt = "0.4.7"
ntex-service = "1.2.0"
ntex-service = "1.2.0-beta.0"
bitflags = "1.3"
fxhash = "0.2.1"
log = "0.4"
Expand All @@ -28,7 +28,7 @@ futures-sink = { version = "0.3", default-features = false, features = ["alloc"]
pin-project-lite = "0.2.9"

[dev-dependencies]
ntex = { version = "0.7.0", features = ["tokio"] }
ntex = { version = "0.7.0-beta.0", features = ["tokio"] }
ntex-bytes = "0.1.18"
ntex-macros = "0.1.3"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
2 changes: 1 addition & 1 deletion ntex/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

## [0.7.0] - 2023-06-xx
## [0.7.0-beta.0] - 2023-06-16

* Migrate to ntex-service 1.2

Expand Down
20 changes: 10 additions & 10 deletions ntex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "0.7.0"
version = "0.7.0-beta.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"
Expand Down Expand Up @@ -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 = "0.3.0"
ntex-connect = "0.3.0-beta.0"
ntex-http = "0.1.9"
ntex-router = "0.5.1"
ntex-service = "1.2.0"
ntex-service = "1.2.0-beta.0"
ntex-macros = "0.1.3"
ntex-util = "0.3.0"
ntex-util = "0.3.0-beta.0"
ntex-bytes = "0.1.19"
ntex-h2 = "0.3.0"
ntex-h2 = "0.3.0-beta.0"
ntex-rt = "0.4.9"
ntex-io = "0.3.0"
ntex-tls = "0.3.0"
ntex-tokio = { version = "0.3.0", optional = true }
ntex-glommio = { version = "0.3.0", optional = true }
ntex-async-std = { version = "0.3.0", optional = true }
ntex-io = "0.3.0-beta.0"
ntex-tls = "0.3.0-beta.0"
ntex-tokio = { version = "0.3.0-beta.0", optional = true }
ntex-glommio = { version = "0.3.0-beta.0", optional = true }
ntex-async-std = { version = "0.3.0-beta.0", optional = true }

async-oneshot = "0.5.0"
async-channel = "1.8.0"
Expand Down

0 comments on commit 1b19971

Please sign in to comment.