Skip to content

Commit 2431417

Browse files
committed
Update changelog and version number for 3.1.1
1 parent 3772d4d commit 2431417

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 3.1.1 (13 Jun 2022)
4+
* Fixed: Download snippets feature not including snippet content.
5+
* Fixed: Alignment of 'opens externally' dashicon.
6+
* Improved: Added additional parameters to `code_snippets/export/filename` filter.
7+
38
## 3.1.0 (17 May 2022)
49
* Fixed: Caching inconsistencies preventing snippets and settings from refreshing on sites with persistent object caching.
510
* Improved: Simplified database queries.

code-snippets.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @author Shea Bunge <shea@codesnippets.pro>
1010
* @copyright 2012-2022 Shea Bunge
1111
* @license GPL-2.0-or-later https://spdx.org/licenses/GPL-2.0-or-later.html
12-
* @version 3.1.0
12+
* @version 3.1.1
1313
* @link https://github.com/sheabunge/code-snippets
1414
*/
1515

@@ -19,7 +19,7 @@
1919
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!
2020
Author: Code Snippets Pro
2121
Author URI: https://codesnippets.pro
22-
Version: 3.1.0
22+
Version: 3.1.1
2323
License: GPL-2.0-or-later
2424
License URI: license.txt
2525
Text Domain: code-snippets

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "3.1.0",
3+
"version": "3.1.1",
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.ts",

php/load.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @var string A PHP-standardized version number string.
1818
*/
19-
const PLUGIN_VERSION = '3.1.0';
19+
const PLUGIN_VERSION = '3.1.1';
2020

2121
/**
2222
* The full path to the main file of this plugin.

readme.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://codesnippets.pro
44
Tags: snippets, functions, multisite, code, php, html, css, javascript
55
License: MIT
66
License URI: license.txt
7-
Stable tag: 3.1.0
7+
Stable tag: 3.1.1
88
Tested up to: 6.0
99

1010
An easy, clean and simple way to run code snippets on your site.
@@ -116,6 +116,11 @@ The best way to do this is to fork the [repository on GitHub](https://github.com
116116

117117
== Changelog ==
118118

119+
= 3.1.1 (13 Jun 2022) =
120+
* Fixed: Download snippets feature not including snippet content.
121+
* Fixed: Alignment of 'opens externally' dashicon.
122+
* Improved: Added additional parameters to `code_snippets/export/filename` filter.
123+
119124
= 3.1.0 (17 May 2022) =
120125
* Fixed: Caching inconsistencies preventing snippets and settings from refreshing on sites with persistent object caching.
121126
* Improved: Simplified database queries.
@@ -290,6 +295,9 @@ __New in Pro__
290295

291296
== Upgrade Notice ==
292297

298+
= 3.1.1 =
299+
Fixed download snippets feature.
300+
293301
= 3.1.0 =
294302
Comprehensive persistent object caching support.
295303

0 commit comments

Comments
 (0)