diff --git a/CHANGELOG.md b/CHANGELOG.md index 8895d528..836b186d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [3.6.9] - 2025-07-17 + +### Added +* Added new workflows for build and deploy processes ([#402](https://github.com/codesnippetspro/code-snippets/pull/402)) + +### Changed +* Updated existing workflows to improve efficiency in CI/CD pipelines + +### Fixed +* Fixed issues related to workflow failures on specific branches + ## [3.6.8] (2025-02-14) ### Added diff --git a/package-lock.json b/package-lock.json index ba0cbd27..c6455edd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-snippets", - "version": "3.6.8", + "version": "3.6.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-snippets", - "version": "3.6.8", + "version": "3.6.9", "license": "GPL-2.0-or-later", "dependencies": { "@codemirror/fold": "^0.19.4", diff --git a/package.json b/package.json index 9fbfb63c..89be1c89 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.6.8", + "version": "3.6.9", "main": "src/dist/edit.js", "directories": { "test": "tests" diff --git a/src/code-snippets.php b/src/code-snippets.php index b2b9cd2f..1caef477 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.6.8 + * Version: 3.6.9 * Requires PHP: 7.4 * Requires at least: 5.0 * - * @version 3.6.8 + * @version 3.6.9 * @package Code_Snippets * @author Shea Bunge * @copyright 2012-2023 Code Snippets Pro @@ -37,7 +37,7 @@ * * @const string */ - define( 'CODE_SNIPPETS_VERSION', '3.6.8' ); + define( 'CODE_SNIPPETS_VERSION', '3.6.9' ); /** * The full path to the main file of this plugin. diff --git a/src/readme.txt b/src/readme.txt index d03fee28..ac734d18 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.6.8 +Stable tag: 3.6.9 Tested up to: 6.7.2 An easy, clean and simple way to enhance your site with code snippets. @@ -103,6 +103,17 @@ You can report security bugs found in the source code of this plugin through the == Changelog == + = 3.6.9 (2025-07-17) = + + __Added__ + * Added workflow for preparing and tagging new plugin versions + * Implemented new changelog automation workflows + + __Fixed__ + * Various fixes to improve changelog automation and dispatching logic + * Enhanced workflow consistency across multiple repositories + + = 3.6.8 (2025-02-14) = __Added__