diff --git a/actix-files/CHANGES.md b/actix-files/CHANGES.md index 263776dab..c6b6e722b 100644 --- a/actix-files/CHANGES.md +++ b/actix-files/CHANGES.md @@ -1,11 +1,16 @@ # Changes +## [0.2.2] - 2020-05-26 + +* Minimize `futures` dependency +* Support sending Content-Length when Content-Range is specified [#1496] +* Update `actix-web` to 2.0.0 + +[#1496]: https://github.com/actix/actix-web/issues/1496 + ## [0.2.1] - 2019-12-22 * Use the same format for file URLs regardless of platforms -* Support sending Content-Length when Content-Range is specified [#1384] - -[#1384]: https://github.com/actix/actix-web/pull/1384 ## [0.2.0] - 2019-12-20 diff --git a/actix-files/Cargo.toml b/actix-files/Cargo.toml index f2e6c1f70..d7ccaa989 100644 --- a/actix-files/Cargo.toml +++ b/actix-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-files" -version = "0.2.1" +version = "0.2.2" authors = ["Nikolay Kim "] description = "Static files support for actix web." readme = "README.md" @@ -18,7 +18,7 @@ name = "actix_files" path = "src/lib.rs" [dependencies] -actix-web = { version = "2.0.0-rc", default-features = false } +actix-web = { version = "2.0.0", default-features = false } actix-http = "1.0.1" actix-service = "1.0.1" bitflags = "1" @@ -34,4 +34,4 @@ v_htmlescape = "0.4" [dev-dependencies] actix-rt = "1.0.0" -actix-web = { version = "2.0.0-rc", features=["openssl"] } +actix-web = { version = "2.0.0", features = ["openssl"] }