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 @@ -21,7 +21,7 @@ function ce_initialisation() {

$version = get_option( 'code_embed_version' );

if ( code_embed_version !== $version ) {
if ( CODE_EMBED_VERSION !== $version ) {

// Set up default option values (if not already set)

Expand Down
12 changes: 8 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: code, embed, html, javascript, script
Requires at least: 4.6
Tested up to: 4.9.4
Requires PHP: 5.3
Stable tag: 2.3
Stable tag: 2.3.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -30,6 +30,7 @@ Technical specification...
* Licensed under [GPLv2 (or later)](http://wordpress.org/about/gpl/ "GNU General Public License")
* Designed for both single and multi-site installations
* PHP7 compatible
* Passes [WordPress.com VIP](https://vip.wordpress.com) coding standards and fully compatible with their platform
* Fully internationalized, ready for translations **If you would like to add a translation to this plugin then please head to our [Translating WordPress](https://translate.wordpress.org/projects/wp-plugins/simple-embed-code "Translating WordPress") page**
* GDPR compliant
* See FAQ for Gutenberg compatibility
Expand Down Expand Up @@ -184,7 +185,10 @@ It is, in that it doesn't save any data that could be odds with GDPR compliance

== Changelog ==

[Learn more about my version numbering methodology](https://artiss.blog/2016/09/wordpress-plugin-versioning/ "WordPress Plugin Versioning")
[Learn more about my version numbering methodology](https://artiss.blog/2016/09/wordpress-plugin-versioning/ "WordPress Plugin Versioning")

= 2.3.1 =
* Bug: Fixed a variable naming issue that I may, or may not (I did), have created in the latest release

= 2.3 =
* Enhancement: All the code is now compliant with the full-fat VIP coding standards. It was no mean feat but, as a result, the plugin is more secure than ever before
Expand Down Expand Up @@ -289,5 +293,5 @@ versions of this plugin

== Upgrade Notice ==

= 2.3 =
* Numerous bug fixed and enhancements
= 2.3.1 =
* 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 @@ -3,7 +3,7 @@
Plugin Name: Code Embed
Plugin URI: https://github.com/dartiss/code-embed
Description: Code Embed provides a very easy and efficient way to embed code (JavaScript and HTML) in your posts and pages.
Version: 2.3
Version: 2.3.1
Author: David Artiss
Author URI: https://artiss.blog
Text Domain: simple-embed-code
Expand All @@ -18,7 +18,7 @@
* @since 1.6
*/

define( 'CODE_EMBED_VERSION', '2.3' );
define( 'CODE_EMBED_VERSION', '2.3.1' );

// Include all the various functions

Expand Down