From c0c10994d8fa17e039a7e2ba45da171b8db565ae Mon Sep 17 00:00:00 2001 From: Shea Bunge Date: Tue, 19 Sep 2017 11:19:29 +1000 Subject: [PATCH] Update changelog and version number for 2.9.4 --- CHANGELOG.md | 4 ++++ README.md | 2 +- code-snippets.php | 6 +++--- languages/code-snippets.pot | 4 ++-- package.json | 2 +- readme.txt | 6 +++++- 6 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e886467..7727d09a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.9.4 (19 Sep 2017) +* Fixed: Prevented PHP error from occurring when saving a snippet +* Minor improvements to database creation function + ## 2.9.3 (11 Sep 2017) * Fixed: Prevent snippets from being executed twice when saving due to invalid ID being passed to allow_execute_snippet filter * Fixed: Re-enabled output suppression when executing snippets diff --git a/README.md b/README.md index 741c967f..4768d5e6 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ * __Requires at least:__ [WordPress 3.6](https://wordpress.org/download/) or later * __Tested up to:__ WordPress 4.8.1 -* __Stable version:__ [2.9.3](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip) +* __Stable version:__ [2.9.4](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip) * __License:__ [MIT](license.txt) Code Snippets is an easy, clean and simple way to add code snippets to your site. It removes the need to add custom snippets to your theme theme's `functions.php` file. diff --git a/code-snippets.php b/code-snippets.php index 74a13779..b6d9837f 100644 --- a/code-snippets.php +++ b/code-snippets.php @@ -10,7 +10,7 @@ * @author Shea Bunge * @copyright 2012-2017 Shea Bunge * @license MIT http://opensource.org/licenses/MIT - * @version 2.9.3 + * @version 2.9.4 * @link https://github.com/sheabunge/code-snippets */ @@ -20,7 +20,7 @@ Description: An easy, clean and simple way to add code snippets to your site. No need to edit to your theme's functions.php file again! Author: Shea Bunge Author URI: https://bungeshea.com -Version: 2.9.3 +Version: 2.9.4 License: MIT License URI: license.txt Text Domain: code-snippets @@ -42,7 +42,7 @@ * @since 2.0 * @var string A PHP-standardized version number string */ -define( 'CODE_SNIPPETS_VERSION', '2.9.3' ); +define( 'CODE_SNIPPETS_VERSION', '2.9.4' ); /** * The full path to the main file of this plugin diff --git a/languages/code-snippets.pot b/languages/code-snippets.pot index 24041233..9e5e6be3 100644 --- a/languages/code-snippets.pot +++ b/languages/code-snippets.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: code-snippets 2.9.3\n" +"Project-Id-Version: code-snippets 2.9.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-11 23:43+1000\n" +"POT-Creation-Date: 2017-09-19 11:19+1000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/package.json b/package.json index c71b2c2d..3fc50e21 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-snippets", - "version": "2.9.3", + "version": "2.9.4", "description": "Manage code snippets running on a WordPress-powered site through a graphical interface", "homepage": "https://wordpress.org/plugins/code-snippets", "main": "Gruntfile.js", diff --git a/readme.txt b/readme.txt index ebddedbe..076778db 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://bungeshea.com/donate/ Tags: code-snippets, snippets, code, php, network, multisite Requires at least: 3.6 Tested up to: 4.8.1 -Stable tag: 2.9.3 +Stable tag: 2.9.4 License: MIT License URI: license.txt @@ -110,6 +110,10 @@ That's fantastic! Fork the [repository on GitHub](http://github.com/sheabunge/co == Changelog == += 2.9.4 (19 Sep 2017) = +* Fixed: Prevented PHP error from occurring when saving a snippet +* Minor improvements to database creation function + = 2.9.3 (11 Sep 2017) = * Fixed: Prevent snippets from being executed twice when saving due to invalid ID being passed to allow_execute_snippet filter * Fixed: Re-enabled output suppression when executing snippets