1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-23 15:24:36 +01:00

update version

This commit is contained in:
Nikolay Kim 2019-12-03 16:35:31 +06:00
parent cf30eafb49
commit c7ed6d3428
2 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,9 @@
# Changes # Changes
## [0.2.0-alpha.2] - 2019-12-03
* Migrate to `std::future`
## [0.1.7] - 2019-11-06 ## [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) * Add an additional `filename*` param in the `Content-Disposition` header of `actix_files::NamedFile` to be more compatible. (#1151)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "actix-files" name = "actix-files"
version = "0.2.0-alpha.1" version = "0.2.0-alpha.2"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"] authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Static files support for actix web." description = "Static files support for actix web."
readme = "README.md" readme = "README.md"
@ -18,8 +18,8 @@ name = "actix_files"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
actix-web = { version = "2.0.0-alpha.1", default-features = false } actix-web = { version = "2.0.0-alpha.2", default-features = false }
actix-http = "0.3.0-alpha.1" actix-http = "0.3.0-alpha.2"
actix-service = "1.0.0-alpha.2" actix-service = "1.0.0-alpha.2"
bitflags = "1" bitflags = "1"
bytes = "0.4" bytes = "0.4"
@ -33,4 +33,4 @@ v_htmlescape = "0.4"
[dev-dependencies] [dev-dependencies]
actix-rt = "1.0.0-alpha.2" 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"] }