diff --git a/Cargo.toml b/Cargo.toml index df175e043..49727020e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,9 @@ [workspace] members = [ "actix-cors", -# "actix-identity", + "actix-identity", "actix-protobuf", "actix-redis", -# "actix-session", + "actix-session", "actix-web-httpauth", ] diff --git a/actix-identity/CHANGES.md b/actix-identity/CHANGES.md index 0c9809ea1..5dc57de23 100644 --- a/actix-identity/CHANGES.md +++ b/actix-identity/CHANGES.md @@ -1,8 +1,9 @@ # Changes -## [Unreleased] - 2020-xx-xx +## [0.3.0-alpha.1] - 2020-03-12 -* Update the `time` dependency to 0.2.5 +* Update the `time` dependency to 0.2.7 +* Update the `actix-web` dependency to 3.0.0-alpha.1 ## [0.2.1] - 2020-01-10 diff --git a/actix-identity/Cargo.toml b/actix-identity/Cargo.toml index 71bb4e4b7..e87c4cb0d 100644 --- a/actix-identity/Cargo.toml +++ b/actix-identity/Cargo.toml @@ -16,14 +16,14 @@ name = "actix_identity" path = "src/lib.rs" [dependencies] -actix-web = { version = "2.0.0", default-features = false, features = ["secure-cookies"] } +actix-web = { version = "3.0.0-alpha.1", default-features = false, features = ["secure-cookies"] } actix-service = "1.0.2" futures = "0.3.1" serde = "1.0" serde_json = "1.0" -time = { version = "0.2.5", default-features = false, features = ["std"] } +time = { version = "0.2.7", default-features = false, features = ["std"] } [dev-dependencies] actix-rt = "1.0.0" -actix-http = "1.0.1" +actix-http = "2.0.0-alpha.2" bytes = "0.5.3" diff --git a/actix-session/CHANGES.md b/actix-session/CHANGES.md index f6753ae58..e480f1d3e 100644 --- a/actix-session/CHANGES.md +++ b/actix-session/CHANGES.md @@ -1,9 +1,12 @@ # Changes -## [Unreleased] - 2020-01-xx +## [0.4.0-alpha.1] - 2020-03-12 -* Update the `time` dependency to 0.2.5 -* [#1292](https://github.com/actix/actix-web/pull/1292) Long lasting auto-prolonged session +* Update the `time` dependency to 0.2.7 +* Update the `actix-web` dependency to 3.0.0-alpha.1 +* Long lasting auto-prolonged session [#1292] + +[#1292]: https://github.com/actix/actix-web/pull/1292 ## [0.3.0] - 2019-12-20 diff --git a/actix-session/Cargo.toml b/actix-session/Cargo.toml index add3e0bce..9fe297576 100644 --- a/actix-session/Cargo.toml +++ b/actix-session/Cargo.toml @@ -22,14 +22,14 @@ default = ["cookie-session"] cookie-session = ["actix-web/secure-cookies"] [dependencies] -actix-web = "2.0.0" +actix-web = "3.0.0-alpha.1" actix-service = "1.0.1" bytes = "0.5.3" derive_more = "0.99.2" futures = "0.3.1" serde = "1.0" serde_json = "1.0" -time = { version = "0.2.5", default-features = false, features = ["std"] } +time = { version = "0.2.7", default-features = false, features = ["std"] } [dev-dependencies] actix-rt = "1.0.0"