From 7179d747eef70ca8760cf5e0c04d3877158fa350 Mon Sep 17 00:00:00 2001 From: Marcus Kazmierczak Date: Wed, 8 May 2024 03:58:06 -0700 Subject: [PATCH] Bump to v3.2.1 --- index.php | 4 ++-- package.json | 2 +- readme.txt | 7 ++++++- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index 132d3c8..baf4002 100644 --- a/index.php +++ b/index.php @@ -3,7 +3,7 @@ * Plugin Name: Code Syntax Block * Plugin URI: https://github.com/mkaz/code-syntax-block * Description: A plugin to extend Gutenberg code block with syntax highlighting - * Version: 3.2.0 + * Version: 3.2.1 * Author: Marcus Kazmierczak * Author URI: https://mkaz.blog/ * License: GPL2 @@ -14,7 +14,7 @@ */ // version added, used in URL -const MKAZ_CODE_SYNTAX_BLOCK_VERSION = '3.2.0'; +const MKAZ_CODE_SYNTAX_BLOCK_VERSION = '3.2.1'; const MKAZ_CODE_SYNTAX_DEFAULT_SCHEME = 'prism-a11y-dark'; const MKAZ_CODE_SYNTAX_COLOR_SCHEMES = array( 'prism-a11y-dark' => 'A11y Dark', diff --git a/package.json b/package.json index 2bc2cc2..da98b90 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mkaz-code-syntax-block", - "version": "3.2.0", + "version": "3.2.1", "license": "GPL-2.0-or-later", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 73edcb8..79f2bce 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: code, code syntax, syntax highlight, code highlighting Requires at least: 5.6 Tested up to: 6.5 Requires PHP: 5.6 -Stable tag: 3.2.0 +Stable tag: 3.2.1 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -104,6 +104,11 @@ Example: == Changelog == += 3.2.1 + +- Update CSS to reduce specificity, enabling theme.json to override. + Props to @anlino + = 3.2.0 - Fix issue with content attributes preserving white space