Skip to content

Commit 74a07e2

Browse files
committed
Update changelog and version number for 2.9.3
1 parent 86d787a commit 74a07e2

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.9.3 (11 Sep 2017)
4+
* Fixed: Prevent snippets from being executed twice when saving due to invalid ID being passed to allow_execute_snippet filter
5+
* Fixed: Re-enabled output suppression when executing snippets
6+
37
## 2.9.2 (8 Sep 2017)
48
* Fixed: Do not attempt to combine queries for fetching local and multisite snippets
59

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* __Requires at least:__ [WordPress 3.6](https://wordpress.org/download/) or later
44
* __Tested up to:__ WordPress 4.8.1
5-
* __Stable version:__ [2.9.1](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip)
5+
* __Stable version:__ [2.9.3](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip)
66
* __License:__ [MIT](license.txt)
77

88
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 for: code-snippets.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @author Shea Bunge <[email protected]>
1111
* @copyright 2012-2017 Shea Bunge
1212
* @license MIT http://opensource.org/licenses/MIT
13-
* @version 2.9.2
13+
* @version 2.9.3
1414
* @link https://github.com/sheabunge/code-snippets
1515
*/
1616

@@ -20,7 +20,7 @@
2020
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!
2121
Author: Shea Bunge
2222
Author URI: https://bungeshea.com
23-
Version: 2.9.2
23+
Version: 2.9.3
2424
License: MIT
2525
License URI: license.txt
2626
Text Domain: code-snippets
@@ -42,7 +42,7 @@
4242
* @since 2.0
4343
* @var string A PHP-standardized version number string
4444
*/
45-
define( 'CODE_SNIPPETS_VERSION', '2.9.2' );
45+
define( 'CODE_SNIPPETS_VERSION', '2.9.3' );
4646

4747
/**
4848
* The full path to the main file of this plugin

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-snippets",
3-
"version": "2.9.2",
3+
"version": "2.9.3",
44
"description": "Manage code snippets running on a WordPress-powered site through a graphical interface",
55
"homepage": "https://wordpress.org/plugins/code-snippets",
66
"main": "Gruntfile.js",

Diff for: readme.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://bungeshea.com/donate/
44
Tags: code-snippets, snippets, code, php, network, multisite
55
Requires at least: 3.6
66
Tested up to: 4.8.1
7-
Stable tag: 2.9.2
7+
Stable tag: 2.9.3
88
License: MIT
99
License URI: license.txt
1010

@@ -110,6 +110,10 @@ That's fantastic! Fork the [repository on GitHub](http://github.com/sheabunge/co
110110

111111
== Changelog ==
112112

113+
= 2.9.3 (11 Sep 2017) =
114+
* Fixed: Prevent snippets from being executed twice when saving due to invalid ID being passed to allow_execute_snippet filter
115+
* Fixed: Re-enabled output suppression when executing snippets
116+
113117
= 2.9.2 (8 Sep 2017) =
114118
* Fixed: Do not attempt to combine queries for fetching local and multisite snippets
115119

0 commit comments

Comments
 (0)