Skip to content

Commit 4b55c67

Browse files
committed
Bump version 1.5.1 to avoid WP deprecation notice on wp . org
1 parent 11de6d8 commit 4b55c67

File tree

6 files changed

+23
-33
lines changed

6 files changed

+23
-33
lines changed

.editorconfig

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
#
2-
# .editorconfig
3-
#
4-
# This file is for unifying the coding style for different editors and IDEs:
5-
# http://editorconfig.org
6-
#
7-
# WordPress Coding Standards:
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
# WordPress Coding Standards
85
# http://make.wordpress.org/core/handbook/coding-standards/
9-
#
6+
107
root = true
118

129
[*]
@@ -15,20 +12,7 @@ end_of_line = lf
1512
insert_final_newline = true
1613
trim_trailing_whitespace = true
1714
indent_style = tab
18-
indent_size = 4
19-
20-
[*.{md,sass,scss,less}]
21-
indent_style = space
22-
indent_size = 2
23-
24-
[*.{json,yml,xml,xml.dist}]
25-
insert_final_newline = false
26-
indent_style = space
27-
indent_size = 2
2815

29-
[*.{txt,md}]
30-
insert_final_newline = false
16+
[{.jshintrc,*.json,*.yml}]
3117
indent_style = space
3218
indent_size = 2
33-
trim_trailing_whitespace = false
34-
end_of_line = crlf

ChangeLog.md

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

3+
### 1.5.1 (19 Feb 2018)
4+
* Misc: Bump WordPress compatibility to mark support for the latest versions
5+
36
### 1.5.0 (03 Jun 2016)
47
* Fix: Fixes "PHP Warning: session_start(): Cannot send session cache limiter - headers already sent" notice in logs
58
* Misc: Internal changes, new Settings class, deprecated methods and properties in main Plugin class
@@ -61,4 +64,4 @@
6164
* Misc: Included PHP Console server library as git submodule rather than a composer dependency.
6265

6366
### 1.0.0 (06 nov 2014)
64-
* First public release.
67+
* First public release.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "unfulvio/wp-php-console",
33
"description": "A WordPress implementation of PHP Console.",
44
"type": "wordpress-plugin",
5-
"version": "1.5.0",
5+
"version": "1.5.1",
66
"keywords": ["wordpress", "debug", "debugging", "development", "php-console", "console", "terminal", "command-line", "cli" ],
77
"homepage": "https://github.com/unfulvio/wp-php-console",
88
"license": "GPLv2.0+",

includes/class-wp-php-console.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Plugin {
2727
* @since 1.5.0
2828
* @const string
2929
*/
30-
CONST VERSION = '1.5.0';
30+
CONST VERSION = '1.5.1';
3131

3232
/**
3333
* The plugin name.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "wp-php-console",
33
"title": "WP PHP Console",
44
"description": "An implementation of PHP Console as a WordPress plugin. Use Chrome Dev Tools to debug your WordPress installation!",
5-
"version": "1.5.0",
5+
"version": "1.5.1",
66
"homepage": "https://wordpress.org/plugins/wp-php-console/",
77
"repository": {
88
"type": "git",

readme.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: nekojira
33
Donate link: http://iheu.org/support/make-a-donation/
44
Tags: dev, development, bug, debug, debugging, stacktrace, php, console, terminal, browser
55
Requires at least: 3.6.0
6-
Tested up to: 4.5.2
7-
Stable tag: 1.5.0
6+
Tested up to: 4.9
7+
Stable tag: 1.5.1
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -17,7 +17,7 @@ Use Chrome Dev Tools to debug your WordPress installation!
1717

1818
This implementation of PHP Console is a handy tool to make it easier to test on the fly any WordPress specific function or class (including those introduced by your active theme and plugins!) from a terminal and inspect results, catch errors and warnings with complete call stack trace straight from the Chrome JavaScript console. In other words, besides debugging, you can execute PHP or WordPress-specific PHP code straight from the terminal and print PHP variables in Chrome Dev Tools JavaScript console along with your normal JavaScript debugging and testing. Keep everything in one place, without leaving the browser to check for your logs or writing temporary PHP test code on a PHP file and refresh your browser page.
1919

20-
Note: PHP version 5.4.0 or above is required to use this plugin.
20+
Note: PHP version 5.4.0 or above is required to use this plugin.
2121

2222
For support and pull requests, please refer to [WP PHP Console GitHub repo](https://github.com/unfulvio/wp-php-console) and read the instructions there - thank you.
2323

@@ -43,7 +43,7 @@ Make sure the PHP Console Chrome extension is enabled through [chrome://extensio
4343

4444
= Options =
4545

46-
**Allow only on SSL**
46+
**Allow only on SSL**
4747
Forces PHP Console to connect on a SSL connection only (of course then if you don't actually have SSL (https), PHP Console simply won't work).
4848

4949
**Allowed IP Masks**
@@ -86,7 +86,7 @@ You *can* but it is probably not a good idea. You should do your debugging and t
8686

8787
= Will there be items logged in my debug.log files when a PHP error occurs? =
8888

89-
Generally no, WP PHP Console will intercept those. However, it's always a good idea to keep an eye on the logs too. Furthermore, WP PHP Console is unable to catch many server errors that result in a 500 error code on the browser. For those you may have traces left in the debug.log file.
89+
Generally no, WP PHP Console will intercept those. However, it's always a good idea to keep an eye on the logs too. Furthermore, WP PHP Console is unable to catch many server errors that result in a 500 error code on the browser. For those you may have traces left in the debug.log file.
9090

9191
= Why are PHP arrays shown as objects? =
9292

@@ -127,9 +127,12 @@ None.
127127

128128
== Changelog ==
129129

130+
= 1.5.1 =
131+
* Misc: Bump WordPress compatibility to mark support for the latest versions
132+
130133
= 1.5.0 =
131134
* Fix: Fixes "PHP Warning: session_start(): Cannot send session cache limiter - headers already sent" notice in logs
132-
* Misc: Internal changes, new Settings class, deprecated methods and properties in main Plugin class
135+
* Misc: Internal changes, new Settings class, deprecated methods and properties in main Plugin class
133136
* Misc: Updated PHP Console Library to 3.1.6
134137
* Misc: Tested up to WordPress 4.5.2
135138

@@ -143,7 +146,7 @@ None.
143146
* Misc: Use WP Requirements as Composer dependency.
144147

145148
= 1.3.8 =
146-
* Misc: Internal changes (alternate PHP version check, automated SVN deploys)
149+
* Misc: Internal changes (alternate PHP version check, automated SVN deploys)
147150

148151
= 1.3.7 =
149152
* Fix: Fixes a bug `Cannot send session cache limiter - headers already sent`

0 commit comments

Comments
 (0)