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"]