Skip to content

Commit 45ff08c

Browse files
authored
Prepare release (#709)
1 parent 3c9beaa commit 45ff08c

File tree

9 files changed

+16
-14
lines changed

9 files changed

+16
-14
lines changed

.github/workflows/osx.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,4 @@ jobs:
4141

4242
- name: Run tests (compio)
4343
timeout-minutes: 15
44-
if: matrix.version != '1.85.0'
45-
run: |
46-
cargo nextest run --retries=3 --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws"
44+
run: cargo nextest run --retries=3 --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws"

ntex-net/CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changes
22

3-
## [3.5.0] - 2026-01-xx
3+
## [3.5.0] - 2026-01-03
44

55
* Refactor io driver
66

ntex-rt/CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changes
22

3-
## [3.4.0] - 2026-01-xx
3+
## [3.4.0] - 2026-01-03
44

55
* Refactor io driver management
66

ntex-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
1111
license = "MIT OR Apache-2.0"
1212
build = "build.rs"
1313
edition = "2024"
14-
rust-version = "1.85"
14+
rust-version = "1.86"
1515

1616
[lib]
1717
name = "ntex_rt"

ntex-server/CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## [3.5.0] - 2026-01-03
4+
5+
* Use updated System api
6+
37
## [3.4.0] - 2025-12-17
48

59
* Upgrade to ntex-service v4

ntex-server/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntex-server"
3-
version = "3.4.0"
3+
version = "3.5.0"
44
authors = ["ntex contributors <team@ntex.rs>"]
55
description = "Server for ntex framework"
66
keywords = ["network", "framework", "async", "futures"]
@@ -10,17 +10,17 @@ documentation = "https://docs.rs/ntex-server/"
1010
categories = ["network-programming", "asynchronous"]
1111
license = "MIT OR Apache-2.0"
1212
edition = "2024"
13-
rust-version = "1.85"
13+
rust-version = "1.86"
1414

1515
[lib]
1616
name = "ntex_server"
1717
path = "src/lib.rs"
1818

1919
[dependencies]
2020
ntex-io = "3"
21-
ntex-net = "3.2"
21+
ntex-net = "3.5"
2222
ntex-service = "4"
23-
ntex-rt = "3"
23+
ntex-rt = "3.4"
2424
ntex-util = "3"
2525

2626
async-channel = { workspace = true }
@@ -33,7 +33,7 @@ socket2 = { workspace = true }
3333
uuid = { workspace = true }
3434

3535
[dev-dependencies]
36-
ntex = "3.0.0-pre.6"
36+
ntex = "3.0.0-pre.9"
3737

3838
[target.'cfg(target_family = "unix")'.dependencies]
3939
signal-hook = { version = "0.3", features=["iterator"] }

ntex-tls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/ntex-openssl/"
1010
categories = ["network-programming", "asynchronous"]
1111
license = "MIT OR Apache-2.0"
1212
edition = "2024"
13-
rust-version = "1.85"
13+
rust-version = "1.86"
1414

1515
[lib]
1616
name = "ntex_tls"

ntex/CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changes
22

3-
## [3.0.0-pre.10] 2026-01-xx
3+
## [3.0.0-pre.10] 2026-01-03
44

55
* Refactor io driver management
66

ntex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ ntex-router = "1"
7777
ntex-service = "4"
7878
ntex-macros = "3"
7979
ntex-util = "3.4"
80-
ntex-server = "3.4"
80+
ntex-server = "3.5"
8181
ntex-h2 = "3.1"
8282
ntex-rt = "3.4"
8383
ntex-io = "3.3"

0 commit comments

Comments
 (0)