Skip to content

Commit b620ea7

Browse files
committed
Update version number to 3.2.1
1 parent f025df1 commit b620ea7

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

CHANGELOG.md

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

3-
## 3.2.1 (UNRELEASED)
3+
## 3.2.1 (05 Oct 2022)
44
* Fixed: Issue making survey reminder notice not dismissible.
55
* Added: `Ctrl`+`/` or `Cmd`+`/` as shortcut for commenting out code in the snippet editor.
66
* Added: Additional hooks to various snippet actions, thanks to contributions made by [ancient-spirit](https://github.com/ancient-spirit).

code-snippets.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @author Shea Bunge <[email protected]>
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.2.0
12+
* @version 3.2.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.2.0
22+
Version: 3.2.1
2323
License: GPL-2.0-or-later
2424
License URI: license.txt
2525
Text Domain: code-snippets

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-snippets",
3-
"version": "3.2.0",
3+
"version": "3.2.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

+1-1
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.2.0';
19+
const PLUGIN_VERSION = '3.2.1';
2020

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

readme.txt

+12-1
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.2.0
7+
Stable tag: 3.2.1
88
Tested up to: 6.0.1
99

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

129129
== Changelog ==
130130

131+
= 3.2.1 (05 Oct 2022) =
132+
* Fixed: Issue making survey reminder notice not dismissible.
133+
* Added: `Ctrl`+`/` or `Cmd`+`/` as shortcut for commenting out code in the snippet editor.
134+
* Added: Additional hooks to various snippet actions, thanks to contributions made by [ancient-spirit](https://github.com/ancient-spirit).
135+
* Added: Fold markers, additional keyboard shortcuts and keymap options to snippet editor,
136+
thanks to contributions made by [Amaral Krichman](https://github.com/karmaral).
137+
* Improved: Removed duplicate tables exist query. ([#](https://wordpress.org/support/topic/duplicate-queries-21)).
138+
* Improved: Enabled 'add paragraphs and formatting' option by default for newly inserted content snippets.
139+
* Added: WP-CLI commands for retrieving, activating, deactivating, deleting, creating, updating, exporting and importing snippets.
140+
* Fixed: Path to iron visible when updating the pro plugin.
141+
131142
= 3.2.0 (22 July 2022) =
132143
* Fixed: Remove default value from SQL columns to improve compatibility with certain versions of MySQL.
133144
* Fixed: Delay loading snippets in Gutenberg editor blocks. (PRO)

0 commit comments

Comments
 (0)