Skip to content

Commit

Permalink
tag version 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkruss committed May 11, 2020
1 parent 68baaa2 commit 6a22e00
Show file tree
Hide file tree
Showing 4 changed files with 15 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.5.8

- Added warning message about invalid MaxTTL
- Added warning about unmaintained Predis library
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.7
Version: 1.5.8
Author: Till Krüss
Author URI: https://till.im/
License: GPLv3
Expand Down
12 changes: 11 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.7
Stable tag: 1.5.8
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

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

== Changelog ==

= 1.5.8 =

- Added warning message about invalid MaxTTL
- Added warning about unmaintained Predis library
- Added suggestion about shorter, human-readable prefixes
- Added Redis Cache Pro compatibility to settings
- Fixed flushing the cache when the prefix contains special characters
- Fixed calling Redis `INFO` when using clusters
- Cleaned up the settings a little bit

= 1.5.7 =

- Added support for PhpRedis TLS connections
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.7
Version: 1.5.8
Text Domain: redis-cache
Domain Path: /languages
Author: Till Krüss
Expand All @@ -17,7 +17,7 @@
exit;
}

define( 'WP_REDIS_VERSION', '1.5.7' );
define( 'WP_REDIS_VERSION', '1.5.8' );

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

0 comments on commit 6a22e00

Please sign in to comment.