Skip to content

Commit

Permalink
Update changelog and version number to version 3.6.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
sheabunge committed Nov 12, 2023
1 parent cb3ccb4 commit 1dd757b
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 11 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# 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.
* Fixed: Label for snippet sharing input incorrectly linked to input field.
* 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.
Expand Down
6 changes: 3 additions & 3 deletions code-snippets.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <shea@codesnippets.pro>
* @copyright 2012-2023 Code Snippets Pro
Expand All @@ -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.
Expand Down
8 changes: 6 additions & 2 deletions gulpfile.babel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(/(?<prefix>Version:\s+|@version\s+)\d+\.\d+[\w-.]+$/mg, `$1${pkg.version}`))
.pipe(replace(/(?<prefix>'CODE_SNIPPETS_VERSION',\s+)'[\w-.]+'/, `$1'${pkg.version}'`))
.pipe(dest('.')),
() => src('./readme.txt')
.pipe(replace(/(?<prefix>Stable tag:\s+|@version\s+)\d+\.\d+[\w-.]+$/mg, `$1${pkg.version}`))
.pipe(dest('.'))
)

export const bundle: TaskFunction = (() => {
const cleanupBefore: TaskFunction = () =>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,18 @@ 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.
* Fixed: Label for snippet sharing input incorrectly linked to input field.
* 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.
Expand Down

0 comments on commit 1dd757b

Please sign in to comment.