Skip to content

Commit c5dff8b

Browse files
committed
Update changelog and version number for 2.10.1
1 parent 253df13 commit c5dff8b

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

CHANGELOG.md

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

3+
## 2.10.1 (10 Feb 2018)
4+
* Fixed: Prevent errors when trying to export no snippets
5+
* Fixed: Use wp_json_encode() to encode export data
6+
* Fixed: Check both the file extension and MIME type of uploaded import files
7+
38
## 2.10.0 (18 Jan 2018)
49
* Improved: Added support for importing from multiple export files at once
510
* Improved: Unbold the titles of inactive snippets for greater visual distinction

README.md

+2-2
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 4.9.2
5-
* __Stable version:__ [2.10.0](https://downloads.wordpress.org/plugin/code-snippets.latest-stable.zip)
4+
* __Tested up to:__ WordPress 4.9.4
5+
* __Stable version:__ [2.10.1](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.

code-snippets.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @author Shea Bunge <shea@bungeshea.com>
1111
* @copyright 2012-2018 Shea Bunge
1212
* @license MIT http://opensource.org/licenses/MIT
13-
* @version 2.10.0
13+
* @version 2.10.1
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.10.0
23+
Version: 2.10.1
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.10.0' );
45+
define( 'CODE_SNIPPETS_VERSION', '2.10.1' );
4646

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

readme.txt

+7-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: bungeshea
33
Donate link: https://bungeshea.com/donate/
44
Tags: code-snippets, snippets, code, php, network, multisite
55
Requires at least: 3.6
6-
Tested up to: 4.9.2
7-
Stable tag: 2.10.0
6+
Tested up to: 4.9.4
7+
Stable tag: 2.10.1
88
License: MIT
99
License URI: license.txt
1010

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

112112
== Changelog ==
113113

114+
= 2.10.1 (10 Feb 2018) =
115+
* Fixed: Prevent errors when trying to export no snippets
116+
* Fixed: Use wp_json_encode() to encode export data
117+
* Fixed: Check both the file extension and MIME type of uploaded import files
118+
114119
= 2.10.0 (18 Jan 2018) =
115120
* Improved: Added support for importing from multiple export files at once
116121
* Improved: Unbold the titles of inactive snippets for greater visual distinction

0 commit comments

Comments
 (0)