From 317c96e369008f5808c3ebc4f264e8ddaeb4df91 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 24 Feb 2021 11:35:13 +0000 Subject: [PATCH] prepare actix-rt 2.1.0 release --- actix-rt/CHANGES.md | 3 +++ actix-rt/Cargo.toml | 4 ++-- actix-rt/README.md | 9 +++++++++ actix-tls/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/actix-rt/CHANGES.md b/actix-rt/CHANGES.md index db9e538b..1fd7b25b 100644 --- a/actix-rt/CHANGES.md +++ b/actix-rt/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 2.1.0 - 2021-02-24 * Add `ActixStream` extension trait to include readiness methods. [#276] * Re-export `tokio::net::TcpSocket` in `net` module [#282] diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index 7990e67d..92f10b85 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-rt" -version = "2.0.2" +version = "2.1.0" authors = [ "Nikolay Kim ", "Rob Ede ", @@ -8,7 +8,7 @@ authors = [ description = "Tokio-based single-threaded async runtime for the Actix ecosystem" keywords = ["async", "futures", "io", "runtime"] homepage = "https://actix.rs" -repository = "https://github.com/actix/actix-net.git" +repository = "https://github.com/actix/actix-net" documentation = "https://docs.rs/actix-rt" categories = ["network-programming", "asynchronous"] license = "MIT OR Apache-2.0" diff --git a/actix-rt/README.md b/actix-rt/README.md index c29d563d..f9a3ed31 100644 --- a/actix-rt/README.md +++ b/actix-rt/README.md @@ -2,4 +2,13 @@ > 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.1.0)](https://docs.rs/actix-rt/2.1.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.1.0/status.svg)](https://deps.rs/crate/actix-rt/2.1.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) + See crate documentation for more: https://docs.rs/actix-rt. diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 92f04e06..8d36d23b 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -69,7 +69,7 @@ features = ["vendored"] optional = true [dev-dependencies] -actix-rt = "2.0.0" +actix-rt = "2.1.0" actix-server = "2.0.0-beta.3" bytes = "1" env_logger = "0.8"