diff --git a/includes/initialise.php b/includes/initialise.php index cf1cbee..d50756f 100644 --- a/includes/initialise.php +++ b/includes/initialise.php @@ -37,7 +37,7 @@ function ce_initialisation() { 'opening_ident' => '{{', 'keyword_ident' => 'CODE', 'closing_ident' => '}}', - 'excerpts' => '', + 'excerpt' => '', ); // Merge existing and default options - any missing from existing will take the default settings. diff --git a/readme.txt b/readme.txt index 041f180..d641535 100644 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: dartiss Donate link: https://artiss.blog/donate Tags: code, embed, html, css, javascript, script Requires at least: 4.6 -Tested up to: 6.3 +Tested up to: 6.4 Requires PHP: 7.4 -Stable tag: 2.3.5 +Stable tag: 2.3.6 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -193,7 +193,10 @@ It is, in that it doesn't save any data that could be odds with GDPR compliance == Changelog == -I use semantic versioning, with the first release being 1.0. +I use semantic versioning, with the first release being 1.0. + += 2.3.6 = +* Bug: Fixed a variable that was incorrectly assigned. It happens. I guess. = 2.3.5 = * Enhancement: Cleared up a big batch of code quality issues. Now it ticks all the boxes for both the WordPress and VIP rulesets in PHPCS. @@ -317,5 +320,5 @@ versions of this plugin == Upgrade Notice == -= 2.3.5 = -* Assorted minor enhancements - mainly code quality \ No newline at end of file += 2.3.6 = +* Minor bug fix \ No newline at end of file diff --git a/simple-code-embed.php b/simple-code-embed.php index 45ac757..51b22d8 100644 --- a/simple-code-embed.php +++ b/simple-code-embed.php @@ -9,7 +9,7 @@ * Plugin Name: Code Embed * Plugin URI: https://wordpress.org/plugins/simple-embed-code/ * Description: 🧩 Code Embed provides a very easy and efficient way to embed code (JavaScript and HTML) in your posts and pages. - * Version: 2.3.5 + * Version: 2.3.6 * Requires at least: 4.6 * Requires PHP: 7.4 * Author: David Artiss @@ -26,7 +26,7 @@ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ -define( 'CODE_EMBED_VERSION', '2.3.5' ); +define( 'CODE_EMBED_VERSION', '2.3.6' ); // Include all the various functions.