Merge branch 'master' into master

This commit is contained in:
Denys Vitali 2019-06-03 14:16:09 +02:00 committed by GitHub
commit 18f4cec4a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# Changes # Changes
## [0.1.1] - 2019-06-03
* Fix optional cookie session support
## [0.1.0] - 2019-05-18 ## [0.1.0] - 2019-05-18
* Use actix-web 1.0.0-rc * Use actix-web 1.0.0-rc

View File

@ -1,6 +1,6 @@
[package] [package]
name = "actix-session" name = "actix-session"
version = "0.1.0" version = "0.1.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"] authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Session for actix web framework." description = "Session for actix web framework."
readme = "README.md" readme = "README.md"

View File

@ -52,7 +52,9 @@ use serde::de::DeserializeOwned;
use serde::Serialize; use serde::Serialize;
use serde_json; use serde_json;
#[cfg(feature = "cookie-session")]
mod cookie; mod cookie;
#[cfg(feature = "cookie-session")]
pub use crate::cookie::CookieSession; pub use crate::cookie::CookieSession;
/// The high-level interface you use to modify session data. /// The high-level interface you use to modify session data.