Skip to content

Commit 1926b7a

Browse files
committed
bump to 1.3.6 with session storage fix
1 parent 0b1c5df commit 1926b7a

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

ChangeLog.md

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

3+
### 1.3.6 (09 jun 2015)
4+
* Fixes a bug `Cannot send session cache limiter - headers already sent`
5+
* Updated PHP Console Library to 3.1.4
6+
37
### 1.3.5 (10 jun 2015)
48
* Updated PHP Console library to 3.1.3
59
* PHP 5.4.0 is the minimum required version to activate the plugin

README.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
44
Tags: development, debug, debugging
55
Requires at least: 3.6.0
66
Tested up to: 4.2.2
7-
Stable tag: 1.3.5
7+
Stable tag: 1.3.6
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -121,6 +121,10 @@ None yet.
121121

122122
== Changelog ==
123123

124+
= 1.3.6 =
125+
* Fixes a bug `Cannot send session cache limiter - headers already sent`
126+
* Updated PHP Console Library to 3.1.4
127+
124128
= 1.3.5 =
125129
* Updated PHP Console library to 3.1.3
126130
* Made PHP 5.4.0 the minimum required version to activate the plugin

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nekojira/wp-php-console",
33
"description": "A WordPress implementation of PHP Console.",
44
"type": "wordpress-plugin",
5-
"version": "1.3.5",
5+
"version": "1.3.6",
66
"keywords": [
77
"wordpress",
88
"debug",

lib/class-wp-php-console.php

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

5757
$this->plugin_name = 'wp-php-console';
58-
$this->version = '1.3.5';
58+
$this->version = '1.3.6';
5959
$this->options = get_option( 'wp_php_console' );
6060

6161
if ( ! class_exists( 'PhpConsole\Connector' ) ) {

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.5
12+
* Version: 1.3.6
1313
* Author: Fulvio Notarstefano
1414
* Author URI: https://github.com/nekojira/
1515
* License: GPL-2.0+

0 commit comments

Comments
 (0)