diff --git a/actix-macros/CHANGES.md b/actix-macros/CHANGES.md index 9f5977c4..065d8e30 100644 --- a/actix-macros/CHANGES.md +++ b/actix-macros/CHANGES.md @@ -1,13 +1,19 @@ -# CHANGES +# Changes -## 0.1.3 - 2020-12-3 +## Unreleased - 2021-xx-xx + + +## 0.2.0-beta.1 - 2021-01-09 +* Remove `actix-reexport` feature. + + +## 0.1.3 - 2020-12-03 +* Add `actix-reexport` feature. [#218] + +[#218]: https://github.com/actix/actix-net/pull/218 -* Add `actix-reexport` feature ## 0.1.2 - 2020-05-18 - -### Changed - * Forward actix_rt::test arguments to test function [#127] [#127]: https://github.com/actix/actix-net/pull/127 diff --git a/actix-macros/Cargo.toml b/actix-macros/Cargo.toml index 1181ace5..d88b0c2d 100644 --- a/actix-macros/Cargo.toml +++ b/actix-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-macros" -version = "0.1.3" +version = "0.2.0-beta.1" authors = ["Nikolay Kim "] description = "Actix runtime macros" repository = "https://github.com/actix/actix-net" diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index be70d374..1386e121 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -16,6 +16,6 @@ name = "actix_rt" path = "src/lib.rs" [dependencies] -actix-macros = "0.1.0" +actix-macros = "0.2.0-beta.1" tokio = { version = "1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }