Skip to content

Commit

Permalink
chore(actix-session): prepare release 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Sep 12, 2024
1 parent 4eb779b commit dd1421f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 4 additions & 0 deletions actix-session/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 0.10.1

- Expose `storage::generate_session_key()` without needing to enable a crate feature.

## 0.10.0

- Add `redis-session-rustls` crate feature that enables `rustls`-secured Redis sessions.
Expand Down
2 changes: 1 addition & 1 deletion actix-session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-session"
version = "0.10.0"
version = "0.10.1"
authors = [
"Nikolay Kim <[email protected]>",
"Luca Palmieri <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions actix-session/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<!-- prettier-ignore-start -->

[![crates.io](https://img.shields.io/crates/v/actix-session?label=latest)](https://crates.io/crates/actix-session)
[![Documentation](https://docs.rs/actix-session/badge.svg?version=0.10.0)](https://docs.rs/actix-session/0.10.0)
[![Documentation](https://docs.rs/actix-session/badge.svg?version=0.10.1)](https://docs.rs/actix-session/0.10.1)
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-session)
[![Dependency Status](https://deps.rs/crate/actix-session/0.10.0/status.svg)](https://deps.rs/crate/actix-session/0.10.0)
[![Dependency Status](https://deps.rs/crate/actix-session/0.10.1/status.svg)](https://deps.rs/crate/actix-session/0.10.1)

<!-- prettier-ignore-end -->

Expand Down
6 changes: 2 additions & 4 deletions actix-session/src/storage/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@ mod utils;

#[cfg(feature = "cookie-session")]
pub use self::cookie::CookieSessionStore;
#[cfg(feature = "redis-session")]
pub use self::redis_rs::{RedisSessionStore, RedisSessionStoreBuilder};
pub use self::{
interface::{LoadError, SaveError, SessionStore, UpdateError},
session_key::SessionKey,
};
#[cfg(feature = "redis-session")]
pub use self::{
redis_rs::{RedisSessionStore, RedisSessionStoreBuilder},
utils::generate_session_key,

Check failure on line 19 in actix-session/src/storage/mod.rs

View workflow job for this annotation

GitHub Actions / Linux / nightly

unresolved import `self::utils`

Check failure on line 19 in actix-session/src/storage/mod.rs

View workflow job for this annotation

GitHub Actions / Linux / msrv

unresolved import `self::utils`

Check failure on line 19 in actix-session/src/storage/mod.rs

View workflow job for this annotation

GitHub Actions / macOS / nightly

unresolved import `self::utils`

Check failure on line 19 in actix-session/src/storage/mod.rs

View workflow job for this annotation

GitHub Actions / Windows / nightly

unresolved import `self::utils`

Check failure on line 19 in actix-session/src/storage/mod.rs

View workflow job for this annotation

GitHub Actions / Linux / stable

unresolved import `self::utils`

Check failure on line 19 in actix-session/src/storage/mod.rs

View workflow job for this annotation

GitHub Actions / macOS / stable

unresolved import `self::utils`

Check failure on line 19 in actix-session/src/storage/mod.rs

View workflow job for this annotation

GitHub Actions / Windows / msrv

unresolved import `self::utils`

Check failure on line 19 in actix-session/src/storage/mod.rs

View workflow job for this annotation

GitHub Actions / Windows / stable

unresolved import `self::utils`
};

0 comments on commit dd1421f

Please sign in to comment.