Skip to content

Commit d7e8ae7

Browse files
authored
Merge pull request #28 from dartiss/develop
Version 2.3.1
2 parents 16c0796 + 01dc93c commit d7e8ae7

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

includes/initialise.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function ce_initialisation() {
2121

2222
$version = get_option( 'code_embed_version' );
2323

24-
if ( code_embed_version !== $version ) {
24+
if ( CODE_EMBED_VERSION !== $version ) {
2525

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

readme.txt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: code, embed, html, javascript, script
44
Requires at least: 4.6
55
Tested up to: 4.9.4
66
Requires PHP: 5.3
7-
Stable tag: 2.3
7+
Stable tag: 2.3.1
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -30,6 +30,7 @@ Technical specification...
3030
* Licensed under [GPLv2 (or later)](http://wordpress.org/about/gpl/ "GNU General Public License")
3131
* Designed for both single and multi-site installations
3232
* PHP7 compatible
33+
* Passes [WordPress.com VIP](https://vip.wordpress.com) coding standards and fully compatible with their platform
3334
* 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**
3435
* GDPR compliant
3536
* See FAQ for Gutenberg compatibility
@@ -184,7 +185,10 @@ It is, in that it doesn't save any data that could be odds with GDPR compliance
184185

185186
== Changelog ==
186187

187-
[Learn more about my version numbering methodology](https://artiss.blog/2016/09/wordpress-plugin-versioning/ "WordPress Plugin Versioning")
188+
[Learn more about my version numbering methodology](https://artiss.blog/2016/09/wordpress-plugin-versioning/ "WordPress Plugin Versioning")
189+
190+
= 2.3.1 =
191+
* Bug: Fixed a variable naming issue that I may, or may not (I did), have created in the latest release
188192

189193
= 2.3 =
190194
* 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
@@ -289,5 +293,5 @@ versions of this plugin
289293

290294
== Upgrade Notice ==
291295

292-
= 2.3 =
293-
* Numerous bug fixed and enhancements
296+
= 2.3.1 =
297+
* Minor bug fix

simple-code-embed.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Code Embed
44
Plugin URI: https://github.com/dartiss/code-embed
55
Description: Code Embed provides a very easy and efficient way to embed code (JavaScript and HTML) in your posts and pages.
6-
Version: 2.3
6+
Version: 2.3.1
77
Author: David Artiss
88
Author URI: https://artiss.blog
99
Text Domain: simple-embed-code
@@ -18,7 +18,7 @@
1818
* @since 1.6
1919
*/
2020

21-
define( 'CODE_EMBED_VERSION', '2.3' );
21+
define( 'CODE_EMBED_VERSION', '2.3.1' );
2222

2323
// Include all the various functions
2424

0 commit comments

Comments
 (0)