diff --git a/CHANGELOG.md b/CHANGELOG.md index c226a7e0d..50a79f1cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [3.10.1] (2026-08-28) + +### Changed +* Enhanced active-link visibility in the toolbar with border-based styling +* Standardized sidebar label font sizing for consistency + +### Fixed +* Fixed admin bar script loading on core to work correctly on front-end +* Fixed snippet modification dates to send with proper UTC offset +* Fixed row truncation screen option to persist correctly across sessions +* Fixed sticky sidebar from displaying unwanted horizontal scrollbar + ## [3.10.0] (2026-08-24) ### Added diff --git a/package-lock.json b/package-lock.json index 4f2c22348..f6a2f8e45 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-snippets", - "version": "3.10.0", + "version": "3.10.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-snippets", - "version": "3.10.0", + "version": "3.10.1", "license": "GPL-2.0-or-later", "dependencies": { "@codemirror/fold": "^0.19.4", diff --git a/package.json b/package.json index 7f99b9ccd..b54ca0b1f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "code-snippets", "description": "Manage code snippets running on a WordPress-powered site through a graphical interface.", "homepage": "https://codesnippets.pro", - "version": "3.10.0", + "version": "3.10.1", "main": "src/dist/edit.js", "directories": { "test": "tests" diff --git a/src/code-snippets.php b/src/code-snippets.php index b13fb4869..93178bec2 100644 --- a/src/code-snippets.php +++ b/src/code-snippets.php @@ -8,11 +8,11 @@ * License: GPL-2.0-or-later * License URI: license.txt * Text Domain: code-snippets - * Version: 3.10.0 + * Version: 3.10.1 * Requires PHP: 7.4 * Requires at least: 5.5 * - * @version 3.10.0 + * @version 3.10.1 * @package Code_Snippets * @author Shea Bunge * @copyright 2012-2026 Code Snippets Pro @@ -37,7 +37,7 @@ * * @const string */ - define( 'CODE_SNIPPETS_VERSION', '3.10.0' ); + define( 'CODE_SNIPPETS_VERSION', '3.10.1' ); /** * The full path to the main file of this plugin. diff --git a/src/readme.txt b/src/readme.txt index 828ee1ff5..7daf39a13 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -4,7 +4,7 @@ Donate link: https://codesnippets.pro Tags: code, snippets, multisite, php, css License: GPL-2.0-or-later License URI: license.txt -Stable tag: 3.10.0 +Stable tag: 3.10.1 Requires at least: 5.5 Tested up to: 7.0.3 Requires PHP: 7.4 @@ -106,6 +106,20 @@ You can report security bugs found in the source code of this plugin through the == Changelog == += 3.10.1 (2026-08-28) = + +__Changed__ + +* Enhanced active-link visibility in the toolbar with border-based styling +* Standardized sidebar label font sizing for consistency + +__Fixed__ + +* Fixed admin bar script loading on core to work correctly on front-end +* Fixed snippet modification dates to send with proper UTC offset +* Fixed row truncation screen option to persist correctly across sessions +* Fixed sticky sidebar from displaying unwanted horizontal scrollbar + = 3.10.0 (2026-08-24) = __Added__