Skip to content

Commit 880206e

Browse files
authored
Merge pull request #8 from JohnTitor/migrate-redis
actix-redis: Prepare for new release
2 parents d159b5e + 8bc0227 commit 880206e

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

actix-redis/CHANGES.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changes
22

3+
## [0.8.1] 2020-02-18
4+
5+
* Move `env_logger` dependency to dev-dependencies and update to 0.7
6+
7+
* Update `actix_web` to 2.0.0 from 2.0.0-rc
8+
9+
* Move repository to actix-extras
10+
311
## [0.8.0] 2019-12-20
412

513
* Release

actix-redis/Cargo.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-redis"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["Nikolay Kim <[email protected]>"]
55
description = "Redis integration for actix framework"
66
license = "MIT/Apache-2.0"
@@ -10,7 +10,7 @@ homepage = "https://github.com/actix/actix-extras"
1010
repository = "https://github.com/actix/actix-extras.git"
1111
documentation = "https://docs.rs/actix-redis/"
1212
categories = ["network-programming", "asynchronous"]
13-
exclude = [".travis.yml", ".cargo/config"]
13+
exclude = [".cargo/config"]
1414
edition = "2018"
1515

1616
[lib]
@@ -44,7 +44,6 @@ actix-session = { version = "0.3.0", optional = true }
4444
rand = { version = "0.7.0", optional = true }
4545
serde = { version = "1.0.101", optional = true, features = ["derive"] }
4646
serde_json = { version = "1.0.40", optional = true }
47-
env_logger = "0.6.2"
4847

4948
[dev-dependencies]
50-
env_logger = "0.6"
49+
env_logger = "0.7"

actix-redis/README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,19 @@
22

33
[![crates.io](https://img.shields.io/crates/v/actix-redis)](https://crates.io/crates/actix-redis)
44
[![Documentation](https://docs.rs/actix-redis/badge.svg)](https://docs.rs/actix-redis)
5-
[![Dependency Status](https://deps.rs/crate/actix-redis/0.8.0/status.svg)](https://deps.rs/crate/actix-redis/0.8.0)
5+
[![Dependency Status](https://deps.rs/crate/actix-redis/0.8.1/status.svg)](https://deps.rs/crate/actix-redis/0.8.1)
66
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-redis)
77
[![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
88

99
> Redis integration for actix framework.
1010
1111
## Documentation
1212

13-
* [API Documentation](http://actix.rs/actix-extras/actix_redis/)
13+
* [API Documentation](https://actix.rs/actix-extras/actix_redis/)
1414
* [Chat on gitter](https://gitter.im/actix/actix)
1515
* Cargo package: [actix-redis](https://crates.io/crates/actix-redis)
1616
* Minimum supported Rust version: 1.39 or later
1717

18-
1918
## Redis session backend
2019

2120
Use redis as session storage.
@@ -55,8 +54,8 @@ async fn main() -> std::io::Result {
5554

5655
This project is licensed under either of
5756

58-
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0))
59-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT))
57+
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0))
58+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT))
6059

6160
at your option.
6261

actix-redis/src/session.rs

-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,6 @@ mod test {
373373
};
374374
use serde::{Deserialize, Serialize};
375375
use serde_json::json;
376-
use time;
377376

378377
#[derive(Serialize, Deserialize, Debug, PartialEq)]
379378
pub struct IndexResponse {

0 commit comments

Comments
 (0)