diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a333535..78b6fd46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,29 @@ # Changelog +## [3.8.0] (2025-10-24) +### Added +* @CarolinaOP and @louiswol94 join the team as plugin contributors. +* File-based execution mode for snippets (optional in plugin settings). +* Version switch option for easily rolling back the plugin to an earlier release. + +### Changed +* Prefixed Composer packages to reduce collisions with other plugins. +* Snippets REST API now supports pagination via page and per_page query parameters. +* Improved editor preview behavior. +* Minor UI improvements to the editor and sidebar. +### Fixed +* Issues with snippet evaluation and front-end initialization in edge cases. +* Improved reliability of snippet evaluation. +* JavaScript and CSS snippets loading twice due to a conditions bug. (PRO) +* Issue where some conditions didn’t work due to loading before the loop. (PRO) ## [3.7.1-beta.3] (2025-10-22) ### Added * Snippets REST API now supports pagination via page and per_page query parameters. - ## [3.7.1-beta.2] (2025-10-22) ### Added diff --git a/package-lock.json b/package-lock.json index fe96a6f9..0e993b17 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-snippets", - "version": "3.7.1-beta.3", + "version": "3.8.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-snippets", - "version": "3.7.1-beta.3", + "version": "3.8.0", "license": "GPL-2.0-or-later", "dependencies": { "@codemirror/fold": "^0.19.4", diff --git a/package.json b/package.json index 8d664089..f29669ba 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "code-snippets", "description": "Manage code snippets running on a WordPress-powered site through a graphical interface.", "homepage": "https://codesnippets.pro", - "version": "3.7.1-beta.3", + "version": "3.8.0", "main": "src/dist/edit.js", "directories": { "test": "tests" diff --git a/src/code-snippets.php b/src/code-snippets.php index 1db3c0bc..b1ebb98d 100644 --- a/src/code-snippets.php +++ b/src/code-snippets.php @@ -8,11 +8,11 @@ * License: GPL-2.0-or-later * License URI: license.txt * Text Domain: code-snippets - * Version: 3.7.1-beta.3 + * Version: 3.8.0 * Requires PHP: 7.4 * Requires at least: 5.0 * - * @version 3.7.1-beta.3 + * @version 3.8.0 * @package Code_Snippets * @author Shea Bunge * @copyright 2012-2024 Code Snippets Pro @@ -37,7 +37,7 @@ * * @const string */ - define( 'CODE_SNIPPETS_VERSION', '3.7.1-beta.3' ); + define( 'CODE_SNIPPETS_VERSION', '3.8.0' ); /** * The full path to the main file of this plugin. diff --git a/src/readme.txt b/src/readme.txt index 167f9bf3..6d75f233 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -4,7 +4,7 @@ Donate link: https://codesnippets.pro Tags: code, snippets, multisite, php, css License: GPL-2.0-or-later License URI: license.txt -Stable tag: 3.7.0 +Stable tag: 3.8.0 Tested up to: 6.8.2 An easy, clean and simple way to enhance your site with code snippets. @@ -106,41 +106,28 @@ You can report security bugs found in the source code of this plugin through the -= 3.7.1-beta.3 (2025-10-22) = - -__Added__ - -* Snippets REST API now supports pagination via page and per_page query parameters. - -= 3.7.1-beta.2 (2025-10-22) = += 3.8.0 (2025-10-24) = __Added__ -* Implemented version switching with a new 'Version Switch' section in Settings - -= 3.7.1-beta.1 (2025-10-16) = - -__Added__ - -* Added @CarolinaOP and @louiswol94 as plugin contributors -* File-based execution mode for snippets (Optional in Plugin Settings) +* @CarolinaOP and @louiswol94 join the team as plugin contributors. +* File-based execution mode for snippets (Optional in Plugin Settings). +* Version switch option, to help easily rollback the plugin to an earlier release. +* Minor UI improvements to the editor and sidebar. __Changed__ -* Minor UI/UX tweaks to the editor form and sidebar +* Prefixed Composer packages to reduce collisions with other plugins. +* Snippets REST API now supports pagination via page and per_page query parameters. * Improved editor preview behavior. __Fixed__ -* Improved reliability of snippet evaluation and front-end integration. -* Prefixed Composer packages to reduce collisions with other plugins, especially those using Guzzle. -* Functions conditions were loading before loop setup, resulting in some conditions not working. (PRO) +* Fixed issues with snippet evaluation and front-end initialization in edge cases. +* Improved reliability of snippet evaluation. * JavaScript and CSS snippets loading twice due to a conditions bug. (PRO) - -__Removed__ - -* Removed CSS linting within the editor until a modern replacement can be implemented. +* Fixed issue where some conditions didn’t work due to loading before the loop. (PRO) = 3.7.0 (2025-08-29) =