Skip to content

Commit 5667173

Browse files
authored
Merge pull request #77 from roidrage/v0.9.1-prep
Preparing for 0.9.1 release
2 parents 945dd81 + b84c5ee commit 5667173

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
## [Unreleased]
66

7+
## [0.9.1] - 2016-07-03
8+
### Added
9+
- More specific runtime dependencies
10+
11+
### Changed
12+
- Documentation and whitespace
13+
714
## [0.9.0] - 2016-07-02
815
### Added
916
- [`CODE_OF_CONDUCT.md`](./CODE_OF_CONDUCT.md)
@@ -194,7 +201,8 @@
194201
### Added
195202
- first working version
196203

197-
[Unreleased]: https://github.com/roidrage/redis-session-store/compare/v0.9.0...HEAD
204+
[Unreleased]: https://github.com/roidrage/redis-session-store/compare/v0.9.1...HEAD
205+
[0.9.1]: https://github.com/roidrage/redis-session-store/compare/v0.9.0...v0.9.1
198206
[0.9.0]: https://github.com/roidrage/redis-session-store/compare/v0.8.1...v0.9.0
199207
[0.8.1]: https://github.com/roidrage/redis-session-store/compare/v0.8.0...v0.8.1
200208
[0.8.0]: https://github.com/roidrage/redis-session-store/compare/v0.7.0...v0.8.0

README.md

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
Redis Session Store
2-
===================
1+
# Redis Session Store
32

4-
[![Build Status](https://travis-ci.org/roidrage/redis-session-store.png?branch=master)](https://travis-ci.org/roidrage/redis-session-store)
5-
[![Code Climate](https://codeclimate.com/github/roidrage/redis-session-store.png)](https://codeclimate.com/github/roidrage/redis-session-store)
6-
[![Gem Version](https://badge.fury.io/rb/redis-session-store.png)](http://badge.fury.io/rb/redis-session-store)
3+
[![Build Status](https://travis-ci.org/roidrage/redis-session-store.svg?branch=master)](https://travis-ci.org/roidrage/redis-session-store)
4+
[![Code Climate](https://codeclimate.com/github/roidrage/redis-session-store.svg)](https://codeclimate.com/github/roidrage/redis-session-store)
5+
[![Gem Version](https://badge.fury.io/rb/redis-session-store.svg)](http://badge.fury.io/rb/redis-session-store)
76

87
A simple Redis-based session store for Rails. But why, you ask,
98
when there's [redis-store](http://github.com/jodosha/redis-store/)?
@@ -20,17 +19,15 @@ only suitable for Rails applications. For other frameworks or
2019
drop-in support for caching, check out
2120
[redis-store](http://github.com/jodosha/redis-store/).
2221

23-
Installation
24-
------------
22+
## Installation
2523

2624
For Rails 3+, adding this to your `Gemfile` will do the trick.
2725

2826
``` ruby
2927
gem 'redis-session-store'
3028
```
3129

32-
Configuration
33-
-------------
30+
## Configuration
3431

3532
See `lib/redis-session-store.rb` for a list of valid options.
3633
In your Rails app, throw in an initializer with the following contents:
@@ -102,17 +99,16 @@ My::Application.config.session_store :redis_session_store, {
10299

103100
**Note** The session will *always* be destroyed when it cannot be loaded.
104101

105-
Rails 2 Compatibility
106-
---------------------
102+
## Rails 2 Compatibility
107103

108104
This gem is currently only compatible with Rails 3+. If you need
109105
Rails 2 compatibility, be sure to pin to a lower version like so:
110106

111107
``` ruby
112108
gem 'redis-session-store', '< 0.3'
113109
```
114-
Contributing, Authors, & License
115-
--------------------------------
110+
111+
## Contributing, Authors, & License
116112

117113
See [CONTRIBUTING.md](CONTRIBUTING.md), [AUTHORS.md](AUTHORS.md), and
118114
[LICENSE](LICENSE), respectively.

lib/redis-session-store.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Redis session storage for Rails, and for Rails only. Derived from
44
# the MemCacheStore code, simply dropping in Redis instead.
55
class RedisSessionStore < ActionDispatch::Session::AbstractStore
6-
VERSION = '0.9.0'.freeze
6+
VERSION = '0.9.1'.freeze
77
# Rails 3.1 and beyond defines the constant elsewhere
88
unless defined?(ENV_SESSION_OPTIONS_KEY)
99
if Rack.release.split('.').first.to_i > 1

0 commit comments

Comments
 (0)