Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion includes/initialise.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
13 changes: 8 additions & 5 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -317,5 +320,5 @@ versions of this plugin

== Upgrade Notice ==

= 2.3.5 =
* Assorted minor enhancements - mainly code quality
= 2.3.6 =
* Minor bug fix
4 changes: 2 additions & 2 deletions simple-code-embed.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.

Expand Down