Skip to content

Commit 4e06d1f

Browse files
committed
Update version number and changelog for 2.13.3
1 parent 56a4385 commit 4e06d1f

File tree

6 files changed

+273
-269
lines changed

6 files changed

+273
-269
lines changed

CHANGELOG.md

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

3-
## develop
3+
## 2.13.3 (13 Mar 2019)
44
* Added: Hover effect to activation switches.
55
* Added: Additional save buttons above snippet editor.
66
* Added: List save keyboard shortcuts to the help tooltip.
@@ -10,6 +10,7 @@
1010
* Fixed: Use Unix newlines in code export file.
1111
* Updated CodeMirror to version 5.44.0.
1212
* Fixed: Correctly register snippet tables with WordPress to prevent database repair errors [[#](https://wordpress.org/support/topic/database-corrupted-4/)]
13+
* Fixed: CodeMirror indentation settings being applied incorrectly
1314

1415
## 2.13.2 (25 Jan 2019)
1516
* Removed potentially problematic cursor position saving feature

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Code Snippets [![Build Status](https://travis-ci.org/sheabunge/code-snippets.png?branch=master)](https://travis-ci.org/sheabunge/code-snippets)
22

33
* __Requires at least:__ [WordPress 3.6](https://wordpress.org/download/) or later
4-
* __Tested up to:__ WordPress 5.0.1
5-
* __Stable version:__ [2.13.1](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip)
4+
* __Tested up to:__ WordPress 5.1.1
5+
* __Stable version:__ [2.13.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 run code snippets on your site. It removes the need to add custom snippets to your theme theme's `functions.php` file.

code-snippets.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
32
/**
43
* Code Snippets - An easy, clean and simple way to add code snippets to your site.
54
*
@@ -10,7 +9,7 @@
109
* @author Shea Bunge <[email protected]>
1110
* @copyright 2012-2019 Shea Bunge
1211
* @license MIT http://opensource.org/licenses/MIT
13-
* @version 2.13.2
12+
* @version 2.13.3
1413
* @link https://github.com/sheabunge/code-snippets
1514
*/
1615

@@ -20,7 +19,7 @@
2019
Description: An easy, clean and simple way to run code snippets on your site. No need to edit to your theme's functions.php file again!
2120
Author: Shea Bunge
2221
Author URI: https://sheabunge.com
23-
Version: 2.13.2
22+
Version: 2.13.3
2423
License: MIT
2524
License URI: license.txt
2625
Text Domain: code-snippets
@@ -92,7 +91,7 @@ function code_snippets() {
9291
static $plugin;
9392

9493
if ( is_null( $plugin ) ) {
95-
$plugin = new Code_Snippets( '2.13.2', __FILE__ );
94+
$plugin = new Code_Snippets( '2.13.3', __FILE__ );
9695
}
9796

9897
return $plugin;

0 commit comments

Comments
 (0)