Skip to content

Commit cb3841f

Browse files
committed
Update changelog and version number for 3.6.7.
1 parent c58725a commit cb3841f

File tree

5 files changed

+54
-34
lines changed

5 files changed

+54
-34
lines changed

Diff for: CHANGELOG.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
# Changelog
22

3-
## 3.6.6.1 (2024-11-27)
3+
## [3.6.7] (2025-01-24)
4+
5+
### Added
6+
* Generated snippet shortcode tags will include the snippet name, for easier identification.
7+
* Admin notices will dismiss automatically after five seconds. ([#208](https://github.com/codesnippetspro/code-snippets/issues/208))
8+
9+
### Changed
10+
* Updated CSS to use latest Sass features.
11+
* Moved theme selector to just above editor preview on settings page (thanks to [brandonjp]). ([#206](https://github.com/codesnippetspro/code-snippets/issues/206))
12+
* `[code_snippet]` shortcodes can now be nested within each other. ([#198](https://github.com/codesnippetspro/code-snippets/issues/198))
13+
14+
### Fixed
15+
* Save buttons above editor did not follow usual validation process in Pro. (PRO) ([#197](https://github.com/codesnippetspro/code-snippets/issues/197))
16+
* Minor inconsistencies in consistent UI elements between Core and Pro.
17+
* Tags input not allowing input. ([#211](https://github.com/codesnippetspro/code-snippets/issues/211))
18+
* Issue with Elementor source code widget. (PRO) ([#205](https://github.com/codesnippetspro/code-snippets/issues/205))
19+
* Snippet descriptions not visible when viewing cloud search results.
20+
* Snippet import page not displaying number of successfully imported snippets.
21+
* Use UTC time when deciding when to display campaign notices.
22+
23+
## [3.6.6.1] (2024-11-27)
424

525
### Fixed
626
* Redeployment of [v3.6.6](#366-2024-11-27) to overcome issue with initial build.
@@ -11,6 +31,8 @@
1131
### Changed
1232
* Improved compatability with modern versions of PHP.
1333
* Extended welcome API to include admin notices.
34+
* Action hook `code_snippets/update_snippet` now only includes the snippet ID instead of the full snippet object.
35+
* Action hook `code_snippets/admin/manage` now includes the currently viewed type.
1436

1537
### Fixed
1638
* Memory issue from checking aggregate posts while loading front-end syntax highlighter.
@@ -1138,7 +1160,11 @@
11381160
### Added
11391161
* Stable version released.
11401162

1163+
[brandonjp]: https://github.com/brandonjp
1164+
11411165
[unreleased]: https://github.com/codesnippetspro/code-snippets/tree/core
1166+
[3.6.7]: https://github.com/codesnippetspro/code-snippets/releases/tag/v3.6.7
1167+
[3.6.6.1]: https://github.com/codesnippetspro/code-snippets/releases/tag/v3.6.6.1
11421168
[3.6.6]: https://github.com/codesnippetspro/code-snippets/releases/tag/v3.6.6
11431169
[3.6.5]: https://github.com/codesnippetspro/code-snippets/releases/tag/v3.6.5
11441170
[3.6.4]: https://github.com/codesnippetspro/code-snippets/releases/tag/v3.6.4

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
@@ -2,7 +2,7 @@
22
"name": "code-snippets",
33
"description": "Manage code snippets running on a WordPress-powered site through a graphical interface.",
44
"homepage": "https://wordpress.org/plugins/code-snippets",
5-
"version": "3.6.6",
5+
"version": "3.6.7",
66
"main": "src/dist/edit.js",
77
"directories": {
88
"test": "tests"

Diff for: src/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.6.1
11+
* Version: 3.6.7
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.0
1414
*
15-
* @version 3.6.6.1
15+
* @version 3.6.7
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.6.1' );
40+
define( 'CODE_SNIPPETS_VERSION', '3.6.7' );
4141

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

Diff for: src/readme.txt

+21-27
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://codesnippets.pro
44
Tags: code, snippets, multisite, php, css
55
License: GPL-2.0-or-later
66
License URI: license.txt
7-
Stable tag: 3.6.6.1
7+
Stable tag: 3.6.7
88
Tested up to: 6.7.1
99

1010
An easy, clean and simple way to enhance your site with code snippets.
@@ -103,6 +103,26 @@ You can report security bugs found in the source code of this plugin through the
103103

104104
== Changelog ==
105105

106+
= 3.6.7 (2025-01-24) =
107+
108+
__Added__
109+
* Generated snippet shortcode tags will include the snippet name, for easier identification.
110+
* Admin notices will dismiss automatically after five seconds. ([#208](https://github.com/codesnippetspro/code-snippets/issues/208))
111+
112+
__Changed__
113+
* Updated CSS to use latest Sass features.
114+
* Moved theme selector to just above editor preview on settings page (thanks to [brandonjp]). ([#206](https://github.com/codesnippetspro/code-snippets/issues/206))
115+
* `[code_snippet]` shortcodes can now be nested within each other. ([#198](https://github.com/codesnippetspro/code-snippets/issues/198))
116+
117+
__Fixed__
118+
* Save buttons above editor did not follow usual validation process in Pro. (PRO) ([#197](https://github.com/codesnippetspro/code-snippets/issues/197))
119+
* Minor inconsistencies in consistent UI elements between Core and Pro.
120+
* Tags input not allowing input. ([#211](https://github.com/codesnippetspro/code-snippets/issues/211))
121+
* Issue with Elementor source code widget. (PRO) ([#205](https://github.com/codesnippetspro/code-snippets/issues/205))
122+
* Snippet descriptions not visible when viewing cloud search results.
123+
* Snippet import page not displaying number of successfully imported snippets.
124+
* Use UTC time when deciding when to display campaign notices.
125+
106126
= 3.6.6.1 (2024-11-27) =
107127

108128
__Fixed__
@@ -310,30 +330,4 @@ __Fixed__
310330
* Bug causing all snippets to show in site health information instead of those active.
311331
* Unnecessary sanitization of file upload data causing import process to fail on Windows systems.
312332

313-
= 3.2.2 (2022-11-17) =
314-
315-
__Fixed__
316-
317-
* Plugin lacking a valid header error on activation.
318-
319-
= 3.2.1 (2022-10-05) =
320-
321-
__Added__
322-
323-
* `Ctrl`+`/` or `Cmd`+`/` as shortcut for commenting out code in the snippet editor.
324-
* Additional hooks to various snippet actions, thanks to contributions made by [ancient-spirit](https://github.com/ancient-spirit).
325-
* Fold markers, additional keyboard shortcuts and keymap options to snippet editor,
326-
thanks to contributions made by [Amaral Krichman](https://github.com/karmaral).
327-
* WP-CLI commands for retrieving, activating, deactivating, deleting, creating, updating, exporting and importing snippets.
328-
329-
__Changed__
330-
331-
* Removed duplicate tables exist query. ([#](https://wordpress.org/support/topic/duplicate-queries-21)).
332-
* Enabled 'add paragraphs and formatting' option by default for newly inserted content snippets.
333-
334-
__Fixed__
335-
336-
* Issue making survey reminder notice not dismissible.
337-
* Incorrect path to icon when updating the pro plugin.
338-
339333
**[The full changelog is available on GitHub](https://github.com/codesnippetspro/code-snippets/blob/core/CHANGELOG.md)**

0 commit comments

Comments
 (0)