mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
files: Bump up to 0.2.2
This commit is contained in:
parent
a8117183bb
commit
55d79cc1b2
@ -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
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actix-files"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
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"] }
|
||||
|
Loading…
Reference in New Issue
Block a user