diff --git a/actix-files/CHANGES.md b/actix-files/CHANGES.md index 5ec56593c..29e774e0f 100644 --- a/actix-files/CHANGES.md +++ b/actix-files/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.2.0-alpha.2] - 2019-12-03 + +* Migrate to `std::future` + ## [0.1.7] - 2019-11-06 * Add an additional `filename*` param in the `Content-Disposition` header of `actix_files::NamedFile` to be more compatible. (#1151) diff --git a/actix-files/Cargo.toml b/actix-files/Cargo.toml index e4cb12deb..55078adb7 100644 --- a/actix-files/Cargo.toml +++ b/actix-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-files" -version = "0.2.0-alpha.1" +version = "0.2.0-alpha.2" authors = ["Nikolay Kim "] description = "Static files support for actix web." readme = "README.md" @@ -18,8 +18,8 @@ name = "actix_files" path = "src/lib.rs" [dependencies] -actix-web = { version = "2.0.0-alpha.1", default-features = false } -actix-http = "0.3.0-alpha.1" +actix-web = { version = "2.0.0-alpha.2", default-features = false } +actix-http = "0.3.0-alpha.2" actix-service = "1.0.0-alpha.2" bitflags = "1" bytes = "0.4" @@ -33,4 +33,4 @@ v_htmlescape = "0.4" [dev-dependencies] actix-rt = "1.0.0-alpha.2" -actix-web = { version = "2.0.0-alpha.1", features=["openssl"] } +actix-web = { version = "2.0.0-alpha.2", features=["openssl"] }