Skip to content

Commit a17323a

Browse files
authored
Merge pull request #594 from Automattic/update/0.9.4
Prepare 0.9.4
2 parents e647e7e + ff87d00 commit a17323a

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ For support questions, feedback and ideas, please use the [WordPress.org forums]
5353

5454
## Upgrade Notice
5555

56+
**0.9.4**
57+
Updates to post list custom status UI. Plus, updates to API and bug fixes.
58+
5659
**0.9.3**
5760
Fixes for localization and notifications
5861

@@ -115,6 +118,16 @@ New features, including story budget and editorial metadata, a completely rewrit
115118

116119
## Changelog
117120

121+
**0.9.4 (February 4, 2020)**
122+
* Bug fix: Move 'Customize' link in metadata metabox to inside metabox (https://github.com/Automattic/Edit-Flow/pull/590 -- props jsit)
123+
* Bug fix: Fix ef_custom_status_list filter on get_custom_statuses (https://github.com/Automattic/Edit-Flow/pull/587 -- props jsit)
124+
* Bug fix: Keep save button text updated, without errors (https://github.com/Automattic/Edit-Flow/pull/585 -- props WPprodigy)
125+
* Bug fix: Add ef_week_first_day as script data to prevent echoing script tags (https://github.com/Automattic/Edit-Flow/pull/582 -- props ryelle)
126+
* Improvement: Deprecate ef_get_comments_plus (https://github.com/Automattic/Edit-Flow/pull/581 -- props WPprodigy)
127+
* Improvement: Cleanup block editor compatibility logic (https://github.com/Automattic/Edit-Flow/pull/580 -- props WPprodigy)
128+
* Improvement: Display custom statuses in post states (https://github.com/Automattic/Edit-Flow/pull/579 -- props WPprodigy)
129+
* Improvement: Clean up dashboard-note logic (https://github.com/Automattic/Edit-Flow/pull/578 -- props WPprodigy)
130+
118131
**0.9.3 (December 18, 2019)**
119132
* Bug fix: parse date time from numeric string instead of textual date (https://github.com/Automattic/Edit-Flow/pull/546 -- props batmoo, cojennin)
120133
* Bug fix: ensure status friendly names are used in notifications (https://github.com/Automattic/Edit-Flow/pull/560 -- props batmoo, cojennin)

edit_flow.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin URI: http://editflow.org/
55
Description: Remixing the WordPress admin for better editorial workflow options.
66
Author: Daniel Bachhuber, Scott Bressler, Mohammad Jangda, Automattic, and others
7-
Version: 0.9.3
7+
Version: 0.9.4
88
Author URI: http://editflow.org/
99
1010
Copyright 2009-2019 Mohammad Jangda, Daniel Bachhuber, Automattic, et al.
@@ -46,7 +46,7 @@ function _ef_print_php_version_admin_notice() {
4646
}
4747

4848
// Define contants
49-
define( 'EDIT_FLOW_VERSION' , '0.9.3' );
49+
define( 'EDIT_FLOW_VERSION' , '0.9.4' );
5050
define( 'EDIT_FLOW_ROOT' , dirname(__FILE__) );
5151
define( 'EDIT_FLOW_FILE_PATH' , EDIT_FLOW_ROOT . '/' . basename(__FILE__) );
5252
define( 'EDIT_FLOW_URL' , plugins_url( '/', __FILE__ ) );

readme.txt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: edit flow, workflow, editorial, newsroom, management, journalism, post sta
55
Requires at least: 5.1
66
Requires PHP: 5.6
77
Tested up to: 5.3
8-
Stable tag: 0.9.3
8+
Stable tag: 0.9.4
99

1010
Redefining your editorial workflow.
1111

@@ -57,6 +57,9 @@ For support questions, feedback and ideas, please use the [WordPress.org forums]
5757

5858
== Upgrade Notice ==
5959

60+
= 0.9.4 =
61+
Updates to post list custom status UI. Plus, updates to API and bug fixes.
62+
6063
= 0.9.3 =
6164
Fixes for localization and notifications
6265

@@ -119,6 +122,17 @@ New features, including story budget and editorial metadata, a completely rewrit
119122

120123
== Changelog ==
121124

125+
= 0.9.4 (February 4, 2020) =
126+
* Bug fix: Move 'Customize' link in metadata metabox to inside metabox (https://github.com/Automattic/Edit-Flow/pull/590 -- props jsit)
127+
* Bug fix: Fix ef_custom_status_list filter on get_custom_statuses (https://github.com/Automattic/Edit-Flow/pull/587 -- props jsit)
128+
* Bug fix: Keep save button text updated, without errors (https://github.com/Automattic/Edit-Flow/pull/585 -- props WPprodigy)
129+
* Bug fix: Add ef_week_first_day as script data to prevent echoing script tags (https://github.com/Automattic/Edit-Flow/pull/582 -- props ryelle)
130+
* Improvement: Deprecate ef_get_comments_plus (https://github.com/Automattic/Edit-Flow/pull/581 -- props WPprodigy)
131+
* Improvement: Cleanup block editor compatibility logic (https://github.com/Automattic/Edit-Flow/pull/580 -- props WPprodigy)
132+
* Improvement: Display custom statuses in post states (https://github.com/Automattic/Edit-Flow/pull/579 -- props WPprodigy)
133+
* Improvement: Clean up dashboard-note logic (https://github.com/Automattic/Edit-Flow/pull/578 -- props WPprodigy)
134+
135+
122136
= 0.9.3 (December 18, 2019) =
123137
* Bug fix: parse date time from numeric string instead of textual date (https://github.com/Automattic/Edit-Flow/pull/546 -- props batmoo, cojennin)
124138
* Bug fix: ensure status friendly names are used in notifications (https://github.com/Automattic/Edit-Flow/pull/560 -- props batmoo, cojennin)

0 commit comments

Comments
 (0)