Skip to content

Commit

Permalink
tag 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkruss committed May 29, 2020
1 parent 2deab29 commit 6249310
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased]
## 1.6.0

- Improved group name sanitization (thanks @naxvog)
- Prevent fatal error when replacing foreign dropin
Expand Down
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.9
Version: 1.6.0
Author: Till Krüss
Author URI: https://till.im/
License: GPLv3
Expand Down
11 changes: 10 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.4
Requires PHP: 5.4
Stable tag: 1.5.9
Stable tag: 1.6.0
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

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

== Changelog ==

= 1.6.0 =

- Improved group name sanitization (thanks @naxvog)
- Prevent fatal error when replacing foreign dropin
- Added HTML footer comment with optional debug information
- Removed prefix suggestions

_The HTML footer comment only prints debug information when `WP_DEBUG` is enabled. To disable the comment entirely, set the `WP_REDIS_DISABLE_COMMENT` constant to `true`._

= 1.5.9 =

- Fixed missing `$info` variable assignment in constructor
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.9
Version: 1.6.0
Text Domain: redis-cache
Domain Path: /languages
Author: Till Krüss
Expand All @@ -17,7 +17,7 @@
exit;
}

define( 'WP_REDIS_VERSION', '1.5.9' );
define( 'WP_REDIS_VERSION', '1.6.0' );

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

0 comments on commit 6249310

Please sign in to comment.