Skip to content

Commit

Permalink
Release v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbachhuber committed Apr 6, 2015
1 parent df2cdd3 commit 4f32072
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion inc/class-shortcode-ui.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static function get_instance() {

function __construct() {

$this->plugin_version = '0.1';
$this->plugin_version = SHORTCODE_UI_VERSION;
$this->plugin_dir = plugin_dir_path( dirname( __FILE__ ) );
$this->plugin_url = plugin_dir_url( dirname( __FILE__ ) );

Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: mattheu, danielbachhuber, jitendraharpalani, sanchothefat, bfintal
Tags: shortcodes
Requires at least: 4.1
Tested up to: 4.2
Stable tag: 0.2.1
Stable tag: 0.2.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -28,6 +28,9 @@ Shortcake can be installed like any other WordPress plugin. Once you've done so,

== Changelog ==

= 0.2.2 (April 6, 2015) =
* Update arguments passed to TinyMCE View Render for WP 4.2 compatibility. Previously passed argument wasn't necessary, so removing doesn't break backwards compatibility.

= 0.2.1 (March 18, 2015) =

* Ensure use of jQuery respects jQuery.noConflict() mode in WP.
Expand Down
4 changes: 3 additions & 1 deletion shortcode-ui.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Plugin Name: Shortcode UI
* Version: v0.2.1
* Version: v0.2.2
* Description: User Interface for adding shortcodes.
* Author: Fusion Engineering and community
* Author URI: http://next.fusion.net/tag/shortcode-ui/
Expand All @@ -19,6 +19,8 @@
* GNU General Public License for more details.
*/

define( 'SHORTCODE_UI_VERSION', '0.2.2' );

require_once dirname( __FILE__ ) . '/inc/class-shortcode-ui.php';
require_once dirname( __FILE__ ) . '/inc/fields/class-shortcode-ui-fields.php';
require_once dirname( __FILE__ ) . '/inc/fields/class-field-attachment.php';
Expand Down

0 comments on commit 4f32072

Please sign in to comment.