From 65e2e8052e28b8d67a60673355a8e3decc8c68c1 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Wed, 8 Apr 2020 16:34:07 +0900 Subject: [PATCH] Release actix-rt 1.1.0 (#126) * Release actix-rt 1.1.0 * Update actix-rt/CHANGES.md --- actix-rt/CHANGES.md | 15 +++++++++------ actix-rt/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/actix-rt/CHANGES.md b/actix-rt/CHANGES.md index 08497c97..8b80a69d 100644 --- a/actix-rt/CHANGES.md +++ b/actix-rt/CHANGES.md @@ -1,14 +1,17 @@ # Changes -## [TBD] - [TBD] +## [1.1.0] - 2020-04-08 -Added +### Added -- Expose `System::is_set` to check if current system has ben started +* Expose `System::is_set` to check if current system has ben started [#99] +* Add `Arbiter::is_running` to check if event loop is running [#124] +* Add `Arbiter::local_join` associated function + to get be able to `await` for spawned futures [#94] -- Add `Arbiter::is_running` to check if event loop is running - -- Add `Arbiter::local_join` associated function to get be able to `await` for spawned futures +[#94]: https://github.com/actix/actix-net/pull/94 +[#99]: https://github.com/actix/actix-net/pull/99 +[#124]: https://github.com/actix/actix-net/pull/124 ## [1.0.0] - 2019-12-11 diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index 3f7b50b3..eb9965e0 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-rt" -version = "1.0.0" +version = "1.1.0" authors = ["Nikolay Kim "] description = "Actix runtime" keywords = ["network", "framework", "async", "futures"]