Skip to content

Commit a8799f8

Browse files
committed
Update version number to 3.6.8.
1 parent 7b4f731 commit a8799f8

File tree

6 files changed

+38
-10
lines changed

6 files changed

+38
-10
lines changed

CHANGELOG.md

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

3+
## [3.6.8] (2025-02-13)
4+
5+
### Added
6+
* `code_snippets/hide_welcome_banner` filter hook for hiding welcome banner in dashboard.
7+
8+
### Removed
9+
* Functionality allowing `[code_snippet]` shortcodes to be embedded recursively – it will be re-added in a future version.
10+
11+
### Fixed
12+
* Shortcodes embedded within `[code_snippet]` shortcodes not evaluating correctly.
13+
* Translation functions being called too early in some instances when loading plugin settings.
14+
* 'Generate' button not appearing on some sites. (PRO)
15+
* Incorrect arrow entity used in cloud list table (props to [brandonjp]).
16+
317
## [3.6.7] (2025-01-24)
418

519
### Added

package-lock.json

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

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://codesnippets.pro",
5-
"version": "3.6.8-dev.1",
5+
"version": "3.6.8",
66
"main": "src/dist/edit.js",
77
"directories": {
88
"test": "tests"

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.8-dev.1
11+
* Version: 3.6.8
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.0
1414
*
15-
* @version 3.6.8-dev.1
15+
* @version 3.6.8
1616
* @package Code_Snippets
1717
* @author Shea Bunge <shea@codesnippets.pro>
1818
* @copyright 2012-2023 Code Snippets Pro
@@ -37,7 +37,7 @@
3737
*
3838
* @const string
3939
*/
40-
define( 'CODE_SNIPPETS_VERSION', '3.6.8-dev.1' );
40+
define( 'CODE_SNIPPETS_VERSION', '3.6.8' );
4141

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

src/php/settings/settings-fields.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* Retrieve the default setting values
1515
*
16-
* @return array<string, array<string, array>>
16+
* @return array<string, array<string, mixed>>
1717
*/
1818
function get_default_settings(): array {
1919
static $defaults;

src/readme.txt

+17-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
=== Code Snippets ===
2-
Contributors: bungeshea, ver3, nate33, lightbulbman, 0aksmith, pauserratgutierrez, johnpixle, codesnippetspro
2+
Contributors: bungeshea, ver3, nate33, lightbulbman, 0aksmith, johnpixle, codesnippetspro
33
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.8-dev.1
7+
Stable tag: 3.6.8
88
Tested up to: 6.7.2
99

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

104104
== Changelog ==
105105

106+
= 3.6.8 (2025-02-13) =
107+
108+
__Added__
109+
* `code_snippets/hide_welcome_banner` filter hook for hiding welcome banner in dashboard.
110+
111+
__Removed__
112+
* Functionality allowing `[code_snippet]` shortcodes to be embedded recursively – it will be re-added in a future version.
113+
114+
__Fixed__
115+
* Shortcodes embedded within `[code_snippet]` shortcodes not evaluating correctly.
116+
* Translation functions being called too early in some instances when loading plugin settings.
117+
* 'Generate' button not appearing on some sites. (PRO)
118+
* Incorrect arrow entity used in cloud list table (props to brandonjp).
119+
106120
= 3.6.7 (2025-01-24) =
107121

108122
__Added__
@@ -111,7 +125,7 @@ __Added__
111125

112126
__Changed__
113127
* 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))
128+
* Moved theme selector to just above editor preview on settings page (thanks to brandonjp). ([#206](https://github.com/codesnippetspro/code-snippets/issues/206))
115129
* `[code_snippet]` shortcodes can now be nested within each other. ([#198](https://github.com/codesnippetspro/code-snippets/issues/198))
116130

117131
__Fixed__

0 commit comments

Comments
 (0)