Skip to content

Commit 9cdffc1

Browse files
committed
Add changelog; bump version to 2.0.1
1 parent 5994f86 commit 9cdffc1

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
**Tested up to:** 4.9.8
99

10-
**Stable tag:** 2.0.0
10+
**Stable tag:** 2.0.1
1111

1212
**License:** GPLv2 or later (of-course)
1313

@@ -140,6 +140,9 @@ Please post your problem in [our free support forum](http://community.rtcamp.com
140140

141141
## Changelog ##
142142

143+
### 2.0.1 ###
144+
* Fix php error with arbitrary statement in empty - Prior to PHP 5.5
145+
143146
### 2.0.0 ###
144147
* Fix typo causing failure to purge on trashed comment. [#159](https://github.com/rtCamp/nginx-helper/pull/159) - by [jinschoi](https://github.com/jinschoi)
145148
* Refactor Plugin structure and remove unused code. Initial code by [chandrapatel](https://github.com/chandrapatel), [#153](https://github.com/rtCamp/nginx-helper/pull/153) - by [kelin1003](https://github.com/kelin1003),

includes/class-nginx-helper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class Nginx_Helper {
7777
public function __construct() {
7878

7979
$this->plugin_name = 'nginx-helper';
80-
$this->version = '2.0.0';
80+
$this->version = '2.0.1';
8181
$this->minimum_WP = '3.0';
8282

8383
if ( ! $this->required_wp_version() ) {
@@ -299,7 +299,7 @@ public function required_wp_version() {
299299
* Dispay plugin notices.
300300
*/
301301
public function display_notices() {
302-
?>
302+
?>
303303
<div id="message" class="error">
304304
<p>
305305
<strong>

nginx-helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Nginx Helper
44
* Plugin URI: https://rtcamp.com/nginx-helper/
55
* Description: Cleans nginx's fastcgi/proxy cache or redis-cache whenever a post is edited/published. Also does few more things.
6-
* Version: 2.0.0
6+
* Version: 2.0.1
77
* Author: rtCamp
88
* Author URI: https://rtcamp.com
99
* Text Domain: nginx-helper

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ License: GPLv2 or later (of-course)
66
License URI: http://www.gnu.org/licenses/gpl-2.0.html
77
Requires at least: 3.0
88
Tested up to: 4.9.8
9-
Stable tag: 2.0.0
9+
Stable tag: 2.0.1
1010

1111
Cleans nginx's fastcgi/proxy cache or redis-cache whenever a post is edited/published. Also does a few more things.
1212

@@ -127,6 +127,9 @@ Please post your problem in [our free support forum](http://community.rtcamp.com
127127

128128
== Changelog ==
129129

130+
= 2.0.1 =
131+
* Fix php error with arbitrary statement in empty - Prior to PHP 5.5
132+
130133
= 2.0.0 =
131134
* Fix typo causing failure to purge on trashed comment. [#159](https://github.com/rtCamp/nginx-helper/pull/159) - by [jinschoi](https://github.com/jinschoi)
132135
* Refactor Plugin structure and remove unused code. Initial code by [chandrapatel](https://github.com/chandrapatel), [#153](https://github.com/rtCamp/nginx-helper/pull/153) - by [jinschoi](https://github.com/kelin1003),

0 commit comments

Comments
 (0)