Skip to content

Commit

Permalink
tag 1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkruss committed Jan 23, 2020
1 parent 75d7f38 commit 095e470
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion includes/object-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Redis Object Cache Drop-In
Plugin URI: http://wordpress.org/plugins/redis-cache/
Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, HHVM, replication, clustering and WP-CLI.
Version: 1.5.5
Version: 1.5.6
Author: Till Krüss
Author URI: https://till.im/
License: GPLv3
Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: redis, predis, phpredis, hhvm, pecl, caching, cache, object cache, perform
Requires at least: 3.3
Tested up to: 5.3
Requires PHP: 5.4
Stable tag: 1.5.5
Stable tag: 1.5.6
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -218,6 +218,11 @@ The following commands are supported:

== Changelog ==

= 1.5.6 =

- Added object cloning to in-memory cache
- Fixed PHP notice related to `read_timeout` parameter

= 1.5.5 =

Please flush the object cache after updating the drop to v1.5.5 to avoid dead keys filling up Redis memory.
Expand Down
4 changes: 2 additions & 2 deletions redis-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Redis Object Cache
Plugin URI: https://wordpress.org/plugins/redis-cache/
Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, HHVM, replication, clustering and WP-CLI.
Version: 1.5.5
Version: 1.5.6
Text Domain: redis-cache
Domain Path: /languages
Author: Till Krüss
Expand All @@ -17,7 +17,7 @@
exit;
}

define( 'WP_REDIS_VERSION', '1.5.5' );
define( 'WP_REDIS_VERSION', '1.5.6' );

if ( defined( 'WP_CLI' ) && WP_CLI ) {
require_once dirname( __FILE__ ) . '/includes/wp-cli-commands.php';
Expand Down

0 comments on commit 095e470

Please sign in to comment.