Skip to content

Commit f0b851b

Browse files
committed
PD-242 Update version number and changelog for v3.4.0.
1 parent 63fddd3 commit f0b851b

File tree

5 files changed

+37
-11
lines changed

5 files changed

+37
-11
lines changed

CHANGELOG.md

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

3-
## 3.4.0 (unreleased)
3+
## 3.4.0 (17 May 2023)
44
* Added: Proper WordPress REST API support for retrieving and modifying snippets.
55
* Improved: Better compatibility with modern versions of PHP (7.0+).
66
* Improved: Converted Edit/Add New Snippet page to use React.
@@ -20,8 +20,9 @@
2020
* Improved: Make shortcode attributes available as individual variables.
2121
* Improved: Allow boolean attributes to be passed to code snippets shortcodes without specifying a value.
2222
* Improved: Replace external links to Pro pricing page with an upgrade modal.
23+
* Fixed: Issue preventing linting libraries from loading correctly in the code editor.
2324

24-
## 3.3.0 (09 Mar 2022)
25+
## 3.3.0 (09 Mar 2023)
2526
* Fixed: Do not enqueue CSS or JS snippet file if no snippets exist. (PRO)
2627
* Improved: Added additional editor shortcuts to list in tooltip.
2728
* Added: Filter for changing Snippets admin menu position. [See this help article for more information.](https://help.codesnippets.pro/article/61-how-can-i-change-the-location-of-the-snippets-admin-menu)

code-snippets.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
* License: GPL-2.0-or-later
99
* License URI: license.txt
1010
* Text Domain: code-snippets
11-
* Version: 3.4.0-beta.2
11+
* Version: 3.4.0
1212
* Requires PHP: 7.0
1313
* Requires at least: 5.0
1414
*
15-
* @version 3.4.0-beta.2
15+
* @version 3.4.0
1616
* @package Code_Snippets
1717
* @author Shea Bunge <[email protected]>
1818
* @copyright 2012-2023 Code Snippets Pro
@@ -35,7 +35,7 @@
3535
*
3636
* @const string
3737
*/
38-
define( 'CODE_SNIPPETS_VERSION', '3.4.0-beta.2' );
38+
define( 'CODE_SNIPPETS_VERSION', '3.4.0' );
3939

4040
/**
4141
* The full path to the main file of this plugin.

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.4.0-beta.2",
3+
"version": "3.4.0",
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",

readme.txt

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ 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.3.0
8-
Tested up to: 6.2
7+
Stable tag: 3.4.0
8+
Tested up to: 6.2.1
99

1010
An easy, clean and simple way to run code snippets on your site.
1111

@@ -128,7 +128,29 @@ The best way to do this is to fork the [repository on GitHub](https://github.com
128128

129129
== Changelog ==
130130

131-
= 3.3.0 (09 Mar 2022) =
131+
= 3.4.0 (17 May 2023) =
132+
* Added: Proper WordPress REST API support for retrieving and modifying snippets.
133+
* Improved: Better compatibility with modern versions of PHP (7.0+).
134+
* Improved: Converted Edit/Add New Snippet page to use React.
135+
* Converted action buttons to asynchronously use REST API endpoints through AJAX.
136+
* Load page components dynamically through React.
137+
* Added action notice queue system.
138+
* Replaced native alert dialog with proper React modal.
139+
* Improved: Catch snippet execution errors to prevent site from crashing.
140+
* Improved: Display recent snippet errors in admin dashboard instead.
141+
* Improved: Updated editor block to use new REST API endpoints. (PRO)
142+
* Improved: Change colour of upgrade notice in Pro plugin. (PRO)
143+
* Improved: All available snippet data is included in export files.
144+
* Improved: Only import specific fields from export file, even if additional fields specified.
145+
* Fixed: Issue preventing editor colorpicker from loading correctly. (PRO)
146+
* Improved: Added help links to content snippet options.
147+
* Improved: Pass additional attributes specified in `[code_snippet]` content shortcode to shortcode content.
148+
* Improved: Make shortcode attributes available as individual variables.
149+
* Improved: Allow boolean attributes to be passed to code snippets shortcodes without specifying a value.
150+
* Improved: Replace external links to Pro pricing page with an upgrade modal.
151+
* Fixed: Issue preventing linting libraries from loading correctly in the code editor.
152+
153+
= 3.3.0 (09 Mar 2023) =
132154
* Fixed: Do not enqueue CSS or JS snippet file if no snippets exist. (PRO)
133155
* Improved: Added additional editor shortcuts to list in tooltip.
134156
* Added: Filter for changing Snippets admin menu position. [See this help article for more information.](https://help.codesnippets.pro/article/61-how-can-i-change-the-location-of-the-snippets-admin-menu)
@@ -290,6 +312,9 @@ __New in Pro__
290312

291313
== Upgrade Notice ==
292314

315+
= 3.4.0 =
316+
New editor screen and code error checking.
317+
293318
= 3.3.0 =
294319
Assorted bug fixes and additional filter hooks.
295320

0 commit comments

Comments
 (0)