Skip to content

Commit

Permalink
Update changelog and version number for 1.4.1 release (#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinfodness committed Jul 2, 2018
1 parent 23fa584 commit c9107b5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apple-news.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Plugin Name: Publish to Apple News
* Plugin URI: http://github.com/alleyinteractive/apple-news
* Description: Export and sync posts to Apple format.
* Version: 1.4.0
* Version: 1.4.1
* Author: Alley Interactive
* Author URI: https://www.alleyinteractive.com
* Text Domain: apple-news
Expand Down
2 changes: 1 addition & 1 deletion includes/class-apple-news.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Apple_News {
* @var string
* @access public
*/
public static $version = '1.4.0';
public static $version = '1.4.1';

/**
* Link to support for the plugin on WordPress.org.
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: publish, apple, news, iOS
Requires at least: 4.0
Tested up to: 4.9.6
Requires PHP: 5.6
Stable tag: 1.4.0
Stable tag: 1.4.1
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl.html

Expand Down Expand Up @@ -46,6 +46,9 @@ Please visit our [wiki](https://github.com/alleyinteractive/apple-news/wiki) for

== Changelog ==

= 1.4.1 =
* Bugfix: Post types that were not registered with Publish to Apple News were failing the nonce check on publish/update because the metabox was not present. Refined the save_post hook to register only for post types with Publish to Apple News support to avoid this situation.

= 1.4.0 =
* Set HTML to the default output format (instead of Markdown) for new installs. HTML format is now recommended for all installs. Support for Markdown may be removed in a future version. Individual components now have a filter to toggle HTML support on or off for each component.
* Added support for HTML format to Heading and Quote components.
Expand Down
2 changes: 1 addition & 1 deletion tests/test-class-apple-news.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,6 @@ public function testSupportInfo() {
*/
public function testVersion() {
$plugin_data = apple_news_get_plugin_data();
$this->assertEquals( $plugin_data['Version'], Apple_News::$version );
$this->assertEquals( Apple_News::$version, $plugin_data['Version'] );
}
}

0 comments on commit c9107b5

Please sign in to comment.