Skip to content

Commit

Permalink
Tag 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbachhuber committed Mar 16, 2016
1 parent 48db24a commit d5d4c09
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
**Contributors:** getpantheon, outlandish josh, mpvanwinkle77, danielbachhuber
**Tags:** comments, sessions
**Requires at least:** 3.0.1
**Tested up to:** 4.3
**Stable tag:** 0.4
**Tested up to:** 4.5
**Stable tag:** 0.5
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -45,6 +45,10 @@ However, if you intend to scale your application, local tempfiles are a dangerou

## Changelog ##

### 0.5 ###
* Compatibility with PHP 7.
* Adds `pantheon_session_expiration` filter to modify session expiration value.

### 0.4 ###
* Adjustment to `session_id()` behavior for wider compatibility
* Using superglobal for REQUEST_TIME as opposed to `time()`
Expand All @@ -54,4 +58,3 @@ However, if you intend to scale your application, local tempfiles are a dangerou

### 0.1 ###
* Initial release

4 changes: 2 additions & 2 deletions pantheon-sessions.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
Plugin Name: Native PHP Sessions for WordPress
Version: 0.4
Version: 0.5
Description: Offload PHP's native sessions to your database for multi-server compatibility.
Author: Pantheon
Author URI: https://www.pantheon.io/
Expand Down Expand Up @@ -43,7 +43,7 @@ private function load() {
*/
private function define_constants() {

define( 'PANTHEON_SESSIONS_VERSION', '0.1-alpha' );
define( 'PANTHEON_SESSIONS_VERSION', '0.5' );

if ( ! defined( 'PANTHEON_SESSIONS_ENABLED' ) ) {
define( 'PANTHEON_SESSIONS_ENABLED', 1 );
Expand Down
9 changes: 6 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: getpantheon, outlandish josh, mpvanwinkle77, danielbachhuber
Tags: comments, sessions
Requires at least: 3.0.1
Tested up to: 4.3
Stable tag: 0.4
Tested up to: 4.5
Stable tag: 0.5
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -45,6 +45,10 @@ If you see an error like "Fatal error: session_start(): Failed to initialize sto

== Changelog ==

= 0.5 =
* Compatibility with PHP 7.
* Adds `pantheon_session_expiration` filter to modify session expiration value.

= 0.4 =
* Adjustment to `session_id()` behavior for wider compatibility
* Using superglobal for REQUEST_TIME as opposed to `time()`
Expand All @@ -54,4 +58,3 @@ If you see an error like "Fatal error: session_start(): Failed to initialize sto

= 0.1 =
* Initial release

0 comments on commit d5d4c09

Please sign in to comment.