Skip to content

Commit b700ce9

Browse files
committed
supports 4.2
1 parent c634bff commit b700ce9

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### 1.3.3 (30 apr 2015)
4+
* Supports WordPress 4.2
5+
36
### 1.3.2 (03 mar 2015)
47
* Fixes "Fatal error: Using $this when not in object context" upon activation in some installations.
58

README.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: nekojira
33
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GSTFUY3LMCA5W
44
Tags: development, debug, debugging
55
Requires at least: 3.6.0
6-
Tested up to: 4.1
7-
Stable tag: 1.3.2
6+
Tested up to: 4.2.1
7+
Stable tag: 1.3.3
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -119,6 +119,9 @@ None yet.
119119

120120
== Changelog ==
121121

122+
= 1.3.3 =
123+
* Supports WordPress 4.2
124+
122125
= 1.3.2 =
123126
* Fixes "Fatal error: Using $this when not in object context" upon activation in some installations.
124127

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nekojira/wp-php-console",
33
"description": "A WordPress implementation of PHP Console.",
4-
"version": "1.3.2",
4+
"version": "1.3.3",
55
"keywords": [
66
"wordpress",
77
"debug",

lib/class-wp-php-console.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class WP_PHP_Console {
5454
public function __construct() {
5555

5656
$this->plugin_name = 'wp-php-console';
57-
$this->version = '1.3.2';
57+
$this->version = '1.3.3';
5858
$this->options = get_option( 'wp_php_console' );
5959

6060
// Perform PHP Console initialisation required asap for other code to be able to output to the JavaScript console

wp-php-console.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin Name: WP PHP Console
1010
* Plugin URI: https://github.com/nekojira/wp-php-console/
1111
* Description: An implementation of PHP Console for WordPress. Easily debug and trace PHP errors and warnings from your Chrome dev tools console using a Google Chrome extension.
12-
* Version: 1.3.2
12+
* Version: 1.3.3
1313
* Author: nekojira
1414
* Author URI: https://github.com/nekojira/
1515
* License: GPL-2.0+

0 commit comments

Comments
 (0)