Skip to content

Commit afe3a71

Browse files
committed
Update version to 2.13.2
1 parent 0a1b901 commit afe3a71

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
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+
## 2.13.2 (25 Jan 2019)
4+
* Removed potentially problematic cursor position saving feature
5+
36
## 2.13.1 (22 Jan 2019)
47
* Added: Add menu buttons to settings page for compact menu
58
* Updated: French translation updated thanks to momo-fr

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* __Stable version:__ [2.13.1](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip)
66
* __License:__ [MIT](license.txt)
77

8-
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.
8+
Code Snippets is an easy, clean and simple way to run code snippets on your site. It removes the need to add custom snippets to your theme theme's `functions.php` file.
99

1010
A snippet is a small chunk of PHP code that you can use to extend the functionality of a WordPress-powered website; essentially a mini-plugin with less load on your site.
1111
Most snippet-hosting sites tell you to add snippet code to your active theme's `functions.php` file, which can get rather long and messy after a while.

code-snippets.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @author Shea Bunge <shea@sheabunge.com>
1111
* @copyright 2012-2019 Shea Bunge
1212
* @license MIT http://opensource.org/licenses/MIT
13-
* @version 2.13.1
13+
* @version 2.13.2
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://sheabunge.com
23-
Version: 2.13.1
23+
Version: 2.13.2
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.13.1' );
45+
define( 'CODE_SNIPPETS_VERSION', '2.13.2' );
4646

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-snippets",
3-
"version": "2.13.1",
3+
"version": "2.13.2",
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": "gulpfile.babel.js",

readme.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ Stable tag: 2.13.1
99
License: MIT
1010
License URI: license.txt
1111

12-
An easy, clean and simple way to add code snippets to your site.
12+
An easy, clean and simple way to run code snippets on your site.
1313

1414
== Description ==
1515

16-
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.
16+
Code Snippets is an easy, clean and simple way to run PHP code snippets on your site. It removes the need to add custom snippets to your theme theme's `functions.php` file.
1717

1818
A snippet is a small chunk of PHP code that you can use to extend the functionality of a WordPress-powered website; essentially a mini-plugin with less load on your site.
1919
Most snippet-hosting sites tell you to add snippet code to your active theme's `functions.php` file, which can get rather long and messy after a while.
@@ -122,6 +122,9 @@ That's fantastic! Fork the [repository on GitHub](http://github.com/sheabunge/co
122122

123123
== Changelog ==
124124

125+
= 2.13.2 (25 Jan 2019) =
126+
* Removed potentially problematic cursor position saving feature
127+
125128
= 2.13.1 (22 Jan 2019) =
126129
* Added: Add menu buttons to settings page for compact menu
127130
* Updated: French translation updated thanks to momo-fr

0 commit comments

Comments
 (0)