From 5c555a9408c9e6e34aa9319f747a85e2f06c4751 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 11 Oct 2021 22:55:23 +0100 Subject: [PATCH] prepare actix-rt release 2.3.0 --- actix-rt/CHANGES.md | 5 ++++- actix-rt/Cargo.toml | 2 +- actix-rt/README.md | 4 ++-- actix-server/CHANGES.md | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/actix-rt/CHANGES.md b/actix-rt/CHANGES.md index 373640d3..642cf27a 100644 --- a/actix-rt/CHANGES.md +++ b/actix-rt/CHANGES.md @@ -1,8 +1,11 @@ # Changes ## Unreleased - 2021-xx-xx -* Add `io-uring` feature for enabling async file I/O on linux. [#374] + + +## 2.3.0 - 2021-10-11 * The `spawn` method can now resolve with non-unit outputs. [#369] +* Add experimental (semver-exempt) `io-uring` feature for enabling async file I/O on linux. [#374] [#369]: https://github.com/actix/actix-net/pull/369 [#374]: https://github.com/actix/actix-net/pull/374 diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index 4b649252..942d54aa 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-rt" -version = "2.2.0" +version = "2.3.0" authors = [ "Nikolay Kim ", "Rob Ede ", diff --git a/actix-rt/README.md b/actix-rt/README.md index 4ad75f09..eb1d1b6f 100644 --- a/actix-rt/README.md +++ b/actix-rt/README.md @@ -3,11 +3,11 @@ > Tokio-based single-threaded async runtime for the Actix ecosystem. [![crates.io](https://img.shields.io/crates/v/actix-rt?label=latest)](https://crates.io/crates/actix-rt) -[![Documentation](https://docs.rs/actix-rt/badge.svg?version=2.2.0)](https://docs.rs/actix-rt/2.2.0) +[![Documentation](https://docs.rs/actix-rt/badge.svg?version=2.3.0)](https://docs.rs/actix-rt/2.3.0) [![Version](https://img.shields.io/badge/rustc-1.46+-ab6000.svg)](https://blog.rust-lang.org/2020/03/12/Rust-1.46.html) ![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-rt.svg)
-[![dependency status](https://deps.rs/crate/actix-rt/2.2.0/status.svg)](https://deps.rs/crate/actix-rt/2.2.0) +[![dependency status](https://deps.rs/crate/actix-rt/2.3.0/status.svg)](https://deps.rs/crate/actix-rt/2.3.0) ![Download](https://img.shields.io/crates/d/actix-rt.svg) [![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/WghFtEH6Hb) diff --git a/actix-server/CHANGES.md b/actix-server/CHANGES.md index 6b080daf..54096eca 100644 --- a/actix-server/CHANGES.md +++ b/actix-server/CHANGES.md @@ -4,7 +4,7 @@ ## 2.0.0-beta.6 - 2021-10-11 -* Add `io-uring` feature for enabling async file I/O on linux. [#374] +* Add experimental (semver-exempt) `io-uring` feature for enabling async file I/O on linux. [#374] * Server no long listens to `SIGHUP` signal. Previously, the received was not used but did block subsequent exit signals from working. [#389] * Remove `config` module. `ServiceConfig`, `ServiceRuntime` public types are removed due to