Skip to content

Commit 05e7be3

Browse files
committed
prepare actix-rt release 2.8.0
1 parent 8d96471 commit 05e7be3

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

actix-rt/CHANGES.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
11
# Changes
22

33
## Unreleased - 2022-xx-xx
4+
5+
6+
## 2.8.0 - 2022-12-21
47
- Add `#[track_caller]` attribute to `spawn` functions and methods. [#454]
8+
- Update `tokio-uring` dependency to `0.4`. [#473]
59
- Minimum supported Rust version (MSRV) is now 1.59.
6-
- Update tokio-uring to 0.4
710

811
[#454]: https://github.com/actix/actix-net/pull/454
912
[#473]: https://github.com/actix/actix-net/pull/473
1013

1114

1215
## 2.7.0 - 2022-03-08
13-
- Update `tokio-uring` dependency to `0.3.0`. [#448]
16+
- Update `tokio-uring` dependency to `0.3`. [#448]
1417
- Minimum supported Rust version (MSRV) is now 1.49.
1518

1619
[#448]: https://github.com/actix/actix-net/pull/448
1720

1821

1922
## 2.6.0 - 2022-01-12
20-
- Update `tokio-uring` dependency to `0.2.0`. [#436]
23+
- Update `tokio-uring` dependency to `0.2`. [#436]
2124

2225
[#436]: https://github.com/actix/actix-net/pull/436
2326

actix-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-rt"
3-
version = "2.7.0"
3+
version = "2.8.0"
44
authors = [
55
"Nikolay Kim <[email protected]>",
66
"Rob Ede <[email protected]>",

actix-rt/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
> Tokio-based single-threaded async runtime for the Actix ecosystem.
44
55
[![crates.io](https://img.shields.io/crates/v/actix-rt?label=latest)](https://crates.io/crates/actix-rt)
6-
[![Documentation](https://docs.rs/actix-rt/badge.svg?version=2.7.0)](https://docs.rs/actix-rt/2.7.0)
6+
[![Documentation](https://docs.rs/actix-rt/badge.svg?version=2.8.0)](https://docs.rs/actix-rt/2.8.0)
77
[![Version](https://img.shields.io/badge/rustc-1.46+-ab6000.svg)](https://blog.rust-lang.org/2020/03/12/Rust-1.46.html)
88
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-rt.svg)
99
<br />
10-
[![dependency status](https://deps.rs/crate/actix-rt/2.7.0/status.svg)](https://deps.rs/crate/actix-rt/2.7.0)
10+
[![dependency status](https://deps.rs/crate/actix-rt/2.8.0/status.svg)](https://deps.rs/crate/actix-rt/2.8.0)
1111
![Download](https://img.shields.io/crates/d/actix-rt.svg)
1212
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/WghFtEH6Hb)
1313

actix-server/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ default = []
2323
io-uring = ["tokio-uring", "actix-rt/io-uring"]
2424

2525
[dependencies]
26-
actix-rt = { version = "2.7", default-features = false }
26+
actix-rt = { version = "2.8", default-features = false }
2727
actix-service = "2"
2828
actix-utils = "3"
2929

30-
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
31-
futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] }
30+
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
31+
futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] }
3232
mio = { version = "0.8", features = ["os-poll", "net"] }
3333
num_cpus = "1.13"
3434
socket2 = "0.4.2"
@@ -41,9 +41,9 @@ tokio-uring = { version = "0.4", optional = true }
4141

4242
[dev-dependencies]
4343
actix-codec = "0.5"
44-
actix-rt = "2.6"
44+
actix-rt = "2.8"
4545

4646
bytes = "1"
4747
env_logger = "0.9"
48-
futures-util = { version = "0.3.7", default-features = false, features = ["sink", "async-await-macro"] }
48+
futures-util = { version = "0.3.17", default-features = false, features = ["sink", "async-await-macro"] }
4949
tokio = { version = "1.13.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] }

0 commit comments

Comments
 (0)