Skip to content

Commit 34ddde9

Browse files
authored
Merge pull request #572 from Automattic/update/0.9.3
Prepare 0.9.3
2 parents b4c283d + e4b505f commit 34ddde9

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

README.md

+10-2
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.3**
57+
Fixes for localization and notifications
58+
5659
**0.9.2**
5760
Fixes issues with scheduling and trashing posts in block editor.
5861

@@ -112,9 +115,14 @@ New features, including story budget and editorial metadata, a completely rewrit
112115

113116
## Changelog
114117

115-
**0.9.1 (November 24, 2019)**
116-
* Bug fix: Prevent issues with scheduling and trashing posts when using the block editor (https://github.com/Automattic/Edit-Flow/pull/556 -- props cojennin, davisshaver, batmoo)
118+
**0.9.3 (December 18, 2019)**
119+
* Bug fix: parse date time from numeric string instead of textual date (https://github.com/Automattic/Edit-Flow/pull/546 -- props batmoo, cojennin)
120+
* Bug fix: ensure status friendly names are used in notifications (https://github.com/Automattic/Edit-Flow/pull/560 -- props batmoo, cojennin)
121+
* Bug fix: fix WP Menu post title notice (https://github.com/Automattic/Edit-Flow/pull/552 - props batmoo, cojennin)
122+
* Updates to tests, build pipeline (props batmoo, dchymko, cojennin)
117123

124+
**0.9.2 (November 24, 2019)**
125+
* Bug fix: Prevent issues with scheduling and trashing posts when using the block editor (https://github.com/Automattic/Edit-Flow/pull/556 -- props cojennin, davisshaver, batmoo)
118126

119127
**0.9.1 (November 4, 2019)**
120128
* Bug fix: Prevent custom status from being reverted when using Gutenberg (https://github.com/Automattic/Edit-Flow/pull/521 -- props mikeyarce, batmoo)

edit_flow.php

+2-2
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.2
7+
Version: 0.9.3
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.2' );
49+
define( 'EDIT_FLOW_VERSION' , '0.9.3' );
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

+10-1
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.2
8+
Stable tag: 0.9.3
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.3 =
61+
Fixes for localization and notifications
62+
6063
= 0.9.2 =
6164
Fixes issues with scheduling and trashing posts in block editor.
6265

@@ -116,6 +119,12 @@ New features, including story budget and editorial metadata, a completely rewrit
116119

117120
== Changelog ==
118121

122+
= 0.9.3 (December 18, 2019) =
123+
* Bug fix: parse date time from numeric string instead of textual date (https://github.com/Automattic/Edit-Flow/pull/546 -- props batmoo, cojennin)
124+
* Bug fix: ensure status friendly names are used in notifications (https://github.com/Automattic/Edit-Flow/pull/560 -- props batmoo, cojennin)
125+
* Bug fix: fix WP Menu post title notice (https://github.com/Automattic/Edit-Flow/pull/552 - props batmoo, cojennin)
126+
* Updates to tests, build pipeline (props batmoo, dchymko, cojennin)
127+
119128
= 0.9.1 (November 24, 2019) =
120129
* Bug fix: Prevent issues with scheduling and trashing posts when using the block editor (https://github.com/Automattic/Edit-Flow/pull/556 -- props cojennin, davisshaver, batmoo)
121130

0 commit comments

Comments
 (0)