Skip to content

Commit 1dd757b

Browse files
committed
Update changelog and version number to version 3.6.3.
1 parent cb3ccb4 commit 1dd757b

File tree

6 files changed

+22
-11
lines changed

6 files changed

+22
-11
lines changed

Diff for: CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
# Changelog
22

3-
## 3.6.2 (08 Nov 2023)
3+
## 3.6.3 (12 Nov 2023)
4+
* Fixed: Import error when initialising cloud sync configuration. (PRO)
5+
6+
## 3.6.2 (11 Nov 2023)
47
* Fixed: Error when attempting to save shared network snippets marked as active.
58
* Fixed: Type error when rendering checkbox fields without a stored or default value.
69
* Fixed: Removed automatic encoding of code content.
710
* Fixed: Label for snippet sharing input incorrectly linked to input field.
811
* Fixed: Error when attempting to download export files from Edit menu.
912
* Fixed: Issue loading Freemius string overrides too early. (PRO)
1013
* Fixed: Fix redirect URL when connecting with OAuth on subdirectory or HTTPS sites. (PRO)
11-
* Fixed: Import error when attempting to completely uninstall the plugin,
14+
* Fixed: Import error when attempting to completely uninstall the plugin.
1215

1316
## 3.6.1 (07 Nov 2023)
1417
* Fixed: Issue accessing fields on Snippets class.

Diff for: code-snippets.php

+3-3
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.6.2
11+
* Version: 3.6.3
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.0
1414
*
15-
* @version 3.6.2
15+
* @version 3.6.3
1616
* @package Code_Snippets
1717
* @author Shea Bunge <[email protected]>
1818
* @copyright 2012-2023 Code Snippets Pro
@@ -37,7 +37,7 @@
3737
*
3838
* @const string
3939
*/
40-
define( 'CODE_SNIPPETS_VERSION', '3.6.2' );
40+
define( 'CODE_SNIPPETS_VERSION', '3.6.3' );
4141

4242
/**
4343
* The full path to the main file of this plugin.

Diff for: gulpfile.babel.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,15 @@ export const build = series(clean, parallel(vendor, css, js))
113113

114114
export default build
115115

116-
export const version: TaskFunction = () =>
117-
src('./code-snippets.php')
116+
export const version: TaskFunction = parallel(
117+
() => src('./code-snippets.php')
118118
.pipe(replace(/(?<prefix>Version:\s+|@version\s+)\d+\.\d+[\w-.]+$/mg, `$1${pkg.version}`))
119119
.pipe(replace(/(?<prefix>'CODE_SNIPPETS_VERSION',\s+)'[\w-.]+'/, `$1'${pkg.version}'`))
120+
.pipe(dest('.')),
121+
() => src('./readme.txt')
122+
.pipe(replace(/(?<prefix>Stable tag:\s+|@version\s+)\d+\.\d+[\w-.]+$/mg, `$1${pkg.version}`))
120123
.pipe(dest('.'))
124+
)
121125

122126
export const bundle: TaskFunction = (() => {
123127
const cleanupBefore: TaskFunction = () =>

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Manage code snippets running on a WordPress-powered site through a graphical interface.",
44
"homepage": "https://wordpress.org/plugins/code-snippets",
55
"main": "gulpfile.babel.ts",
6-
"version": "3.6.2",
6+
"version": "3.6.3",
77
"directories": {
88
"test": "tests"
99
},

Diff for: readme.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,18 @@ You can report security bugs found in the source code of this plugin through the
131131

132132
== Changelog ==
133133

134-
= 3.6.2 (08 Nov 2023) =
134+
= 3.6.3 (12 Nov 2023) =
135+
* Fixed: Import error when initialising cloud sync configuration. (PRO)
136+
137+
= 3.6.2 (11 Nov 2023) =
135138
* Fixed: Error when attempting to save shared network snippets marked as active.
136139
* Fixed: Type error when rendering checkbox fields without a stored or default value.
137140
* Fixed: Removed automatic encoding of code content.
138141
* Fixed: Label for snippet sharing input incorrectly linked to input field.
139142
* Fixed: Error when attempting to download export files from Edit menu.
140143
* Fixed: Issue loading Freemius string overrides too early. (PRO)
141144
* Fixed: Fix redirect URL when connecting with OAuth on subdirectory or HTTPS sites. (PRO)
145+
* Fixed: Import error when attempting to completely uninstall the plugin.
142146

143147
= 3.6.1 (07 Nov 2023) =
144148
* Fixed: Issue accessing fields on Snippets class.

0 commit comments

Comments
 (0)