diff --git a/CHANGELOG.md b/CHANGELOG.md index cf22ec84..1019817d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog -## 3.6.2 (08 Nov 2023) +## 3.6.3 (12 Nov 2023) +* Fixed: Import error when initialising cloud sync configuration. (PRO) + +## 3.6.2 (11 Nov 2023) * Fixed: Error when attempting to save shared network snippets marked as active. * Fixed: Type error when rendering checkbox fields without a stored or default value. * Fixed: Removed automatic encoding of code content. @@ -8,7 +11,7 @@ * Fixed: Error when attempting to download export files from Edit menu. * Fixed: Issue loading Freemius string overrides too early. (PRO) * Fixed: Fix redirect URL when connecting with OAuth on subdirectory or HTTPS sites. (PRO) -* Fixed: Import error when attempting to completely uninstall the plugin, +* Fixed: Import error when attempting to completely uninstall the plugin. ## 3.6.1 (07 Nov 2023) * Fixed: Issue accessing fields on Snippets class. diff --git a/code-snippets.php b/code-snippets.php index 036e3764..5df0a4aa 100644 --- a/code-snippets.php +++ b/code-snippets.php @@ -8,11 +8,11 @@ * License: GPL-2.0-or-later * License URI: license.txt * Text Domain: code-snippets - * Version: 3.6.2 + * Version: 3.6.3 * Requires PHP: 7.4 * Requires at least: 5.0 * - * @version 3.6.2 + * @version 3.6.3 * @package Code_Snippets * @author Shea Bunge * @copyright 2012-2023 Code Snippets Pro @@ -37,7 +37,7 @@ * * @const string */ - define( 'CODE_SNIPPETS_VERSION', '3.6.2' ); + define( 'CODE_SNIPPETS_VERSION', '3.6.3' ); /** * The full path to the main file of this plugin. diff --git a/gulpfile.babel.ts b/gulpfile.babel.ts index 89e6629c..b48f66b0 100644 --- a/gulpfile.babel.ts +++ b/gulpfile.babel.ts @@ -113,11 +113,15 @@ export const build = series(clean, parallel(vendor, css, js)) export default build -export const version: TaskFunction = () => - src('./code-snippets.php') +export const version: TaskFunction = parallel( + () => src('./code-snippets.php') .pipe(replace(/(?Version:\s+|@version\s+)\d+\.\d+[\w-.]+$/mg, `$1${pkg.version}`)) .pipe(replace(/(?'CODE_SNIPPETS_VERSION',\s+)'[\w-.]+'/, `$1'${pkg.version}'`)) + .pipe(dest('.')), + () => src('./readme.txt') + .pipe(replace(/(?Stable tag:\s+|@version\s+)\d+\.\d+[\w-.]+$/mg, `$1${pkg.version}`)) .pipe(dest('.')) +) export const bundle: TaskFunction = (() => { const cleanupBefore: TaskFunction = () => diff --git a/package-lock.json b/package-lock.json index 791c921b..8bc7e7d2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-snippets", - "version": "3.6.2", + "version": "3.6.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-snippets", - "version": "3.6.2", + "version": "3.6.3", "license": "GPL-2.0-or-later", "dependencies": { "@codemirror/fold": "^0.19.3", diff --git a/package.json b/package.json index 1f74dec9..0fb5de2a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "Manage code snippets running on a WordPress-powered site through a graphical interface.", "homepage": "https://wordpress.org/plugins/code-snippets", "main": "gulpfile.babel.ts", - "version": "3.6.2", + "version": "3.6.3", "directories": { "test": "tests" }, diff --git a/readme.txt b/readme.txt index f0a116d4..d13192c7 100644 --- a/readme.txt +++ b/readme.txt @@ -131,7 +131,10 @@ You can report security bugs found in the source code of this plugin through the == Changelog == -= 3.6.2 (08 Nov 2023) = += 3.6.3 (12 Nov 2023) = +* Fixed: Import error when initialising cloud sync configuration. (PRO) + += 3.6.2 (11 Nov 2023) = * Fixed: Error when attempting to save shared network snippets marked as active. * Fixed: Type error when rendering checkbox fields without a stored or default value. * Fixed: Removed automatic encoding of code content. @@ -139,6 +142,7 @@ You can report security bugs found in the source code of this plugin through the * Fixed: Error when attempting to download export files from Edit menu. * Fixed: Issue loading Freemius string overrides too early. (PRO) * Fixed: Fix redirect URL when connecting with OAuth on subdirectory or HTTPS sites. (PRO) +* Fixed: Import error when attempting to completely uninstall the plugin. = 3.6.1 (07 Nov 2023) = * Fixed: Issue accessing fields on Snippets class.