Skip to content

Commit bc597b6

Browse files
Merge pull request #80 from lcache/update-0-3-0
Update README and bump version for 0.3.0
2 parents c145187 + 45d6d04 commit bc597b6

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**Tags:** cache, plugin
44
**Requires at least:** 4.3
55
**Tested up to:** 4.6.1
6-
**Stable tag:** 0.2.2
6+
**Stable tag:** 0.3.0
77
**License:** GPLv2 or later
88
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -28,7 +28,7 @@ Go forth and make awesome! And, once you've built something great, [send us feat
2828
To install WP LCache, follow these steps:
2929

3030
1. Install the plugin from WordPress.org using the WordPress dashboard.
31-
1a. Those installing from Github will need to run `composer install --no-dev` after cloning to get the [LCache library](https://github.com/lcache/lcache).
31+
1a. Those installing from Github will need to run `composer install --no-dev --no-scripts` after cloning to get the [LCache library](https://github.com/lcache/lcache).
3232
2. Activate the plugin, to ensure LCache's database tables are created. These are created on the plugin activation hook.
3333
3. Symlink the object cache drop-in to its appropriate location: `cd wp-content; ln -s plugins/wp-lcache/object-cache.php object-cache.php`
3434

@@ -43,7 +43,7 @@ If you need to install APCu, the PECL installer is the easiest way to do so.
4343

4444
If you can't easily use PHP 5.6 or greater, you should switch to a more responsible hosting provider.
4545

46-
### Admin notices ###
46+
### Admin Notices ###
4747

4848
If any of the requirements for LCache to function are not met, you will see an admin notice indicating the issue. Here's how to resolve issues for each possible dependency:
4949

@@ -78,6 +78,11 @@ Existing WP LCache users will need to alter the `value` column on the lcache_eve
7878

7979
## Changelog ##
8080

81+
### 0.3.0 (September 21st, 2016) ###
82+
* Introduces the `wp lcache enable` WP-CLI command to create the `object-cache.php` symlink.
83+
* Updates LCache to [v0.3.2](https://github.com/lcache/lcache/releases/tag/v0.3.2), which is more noisy about failed L2 serialization.
84+
* Better admin notices: alerts when LCache database tables are missing, or if the plugin is active but `object-cache.php` is missing.
85+
8186
### 0.2.2 (September 14th, 2016) ###
8287
* Updates LCache to [v0.3.1](https://github.com/lcache/lcache/releases/tag/v0.3.1), which has L2 cache guard against returning failed unserializations.
8388
* Sets `STRICT_ALL_TABLES` on the database handler to fail and give warnings if there are issues with database inserts.

readme.txt

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: getpantheon, danielbachhuber, stevector
33
Tags: cache, plugin
44
Requires at least: 4.3
55
Tested up to: 4.6.1
6-
Stable tag: 0.2.2
6+
Stable tag: 0.3.0
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -28,7 +28,7 @@ Go forth and make awesome! And, once you've built something great, [send us feat
2828
To install WP LCache, follow these steps:
2929

3030
1. Install the plugin from WordPress.org using the WordPress dashboard.
31-
1a. Those installing from Github will need to run `composer install --no-dev` after cloning to get the [LCache library](https://github.com/lcache/lcache).
31+
1a. Those installing from Github will need to run `composer install --no-dev --no-scripts` after cloning to get the [LCache library](https://github.com/lcache/lcache).
3232
2. Activate the plugin, to ensure LCache's database tables are created. These are created on the plugin activation hook.
3333
3. Symlink the object cache drop-in to its appropriate location: `cd wp-content; ln -s plugins/wp-lcache/object-cache.php object-cache.php`
3434

@@ -43,7 +43,7 @@ If you need to install APCu, the PECL installer is the easiest way to do so.
4343

4444
If you can't easily use PHP 5.6 or greater, you should switch to a more responsible hosting provider.
4545

46-
= Admin notices =
46+
= Admin Notices =
4747

4848
If any of the requirements for LCache to function are not met, you will see an admin notice indicating the issue. Here's how to resolve issues for each possible dependency:
4949

@@ -78,6 +78,11 @@ Existing WP LCache users will need to alter the `value` column on the lcache_eve
7878

7979
== Changelog ==
8080

81+
= 0.3.0 (September 21st, 2016) =
82+
* Introduces the `wp lcache enable` WP-CLI command to create the `object-cache.php` symlink.
83+
* Updates LCache to [v0.3.2](https://github.com/lcache/lcache/releases/tag/v0.3.2), which is more noisy about failed L2 serialization.
84+
* Better admin notices: alerts when LCache database tables are missing, or if the plugin is active but `object-cache.php` is missing.
85+
8186
= 0.2.2 (September 14th, 2016) =
8287
* Updates LCache to [v0.3.1](https://github.com/lcache/lcache/releases/tag/v0.3.1), which has L2 cache guard against returning failed unserializations.
8388
* Sets `STRICT_ALL_TABLES` on the database handler to fail and give warnings if there are issues with database inserts.

wp-lcache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WP LCache
44
* Plugin URI: http://github.com/pantheon-systems/wp-lcache/
55
* Description: Supercharge your WP Object Cache with LCache, a persistent, performant, and multi-layer cache library.
6-
* Version: 0.2.2
6+
* Version: 0.3.0
77
* Author: Pantheon, Daniel Bachhuber
88
* Author URI: https://pantheon.io/
99
*/

0 commit comments

Comments
 (0)