mirror of
https://github.com/actix/actix-extras.git
synced 2025-06-26 18:37:41 +02:00
prepare v3 compatible releases (#95)
This commit is contained in:
@ -1,32 +1,29 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2020-xx-xx
|
||||
|
||||
|
||||
## 0.9.0 - 2020-09-11
|
||||
* Update `actix-web` dependency to 3.0.0.
|
||||
* Minimize `futures` dependency.
|
||||
|
||||
## [0.9.0-alpha.2]
|
||||
|
||||
## 0.9.0-alpha.2 - 2020-05-17
|
||||
* Add `cookie_http_only` functionality to RedisSession builder, setting this
|
||||
to false allows JavaScript to access cookies. Defaults to true.
|
||||
|
||||
* Change type of parameter of ttl method to u32.
|
||||
|
||||
* Update `actix` to 0.10.0-alpha.3
|
||||
|
||||
* Update `tokio-util` to 0.3
|
||||
|
||||
* Minimum supported Rust version(MSRV) is now 1.40.0.
|
||||
|
||||
## [0.9.0-alpha.1]
|
||||
|
||||
## 0.9.0-alpha.1 - 2020-03-28
|
||||
* Update `actix` to 0.10.0-alpha.2
|
||||
|
||||
* Update `actix-session` to 0.4.0-alpha.1
|
||||
|
||||
* Update `actix-web` to 3.0.0-alpha.1
|
||||
|
||||
* Update `time` to 0.2.9
|
||||
|
||||
|
||||
## [0.8.1] 2020-02-18
|
||||
|
||||
* Move `env_logger` dependency to dev-dependencies and update to 0.7
|
||||
|
@ -1,11 +1,11 @@
|
||||
[package]
|
||||
name = "actix-redis"
|
||||
version = "0.9.0-alpha.2"
|
||||
version = "0.9.0"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
description = "Redis integration for actix framework"
|
||||
description = "Redis integration for Actix web"
|
||||
license = "MIT OR Apache-2.0"
|
||||
readme = "README.md"
|
||||
keywords = ["web", "redis", "async", "actix", "tokio"]
|
||||
keywords = ["actix", "redis", "async", "session"]
|
||||
homepage = "https://github.com/actix/actix-extras"
|
||||
repository = "https://github.com/actix/actix-extras.git"
|
||||
documentation = "https://docs.rs/actix-redis/"
|
||||
@ -33,7 +33,7 @@ web = [
|
||||
|
||||
[dependencies]
|
||||
actix = "0.10.0"
|
||||
actix-utils = "1.0.3"
|
||||
actix-utils = "2.0.0"
|
||||
|
||||
log = "0.4.6"
|
||||
backoff = "0.2.1"
|
||||
@ -49,7 +49,7 @@ tokio-util = "0.3.0"
|
||||
actix-web = { version = "3.0.0", default_features = false, optional = true }
|
||||
actix-http = { version = "2.0.0", optional = true }
|
||||
actix-service = { version = "1.0.6", optional = true }
|
||||
actix-session = { version = "0.4.0-alpha.1", optional = true }
|
||||
actix-session = { version = "0.4.0", optional = true }
|
||||
rand = { version = "0.7.0", optional = true }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
serde_json = { version = "1.0.40", optional = true }
|
||||
|
Reference in New Issue
Block a user