Skip to content

Commit 3eb2acd

Browse files
authored
Merge pull request #557 from Automattic/update/0.9.2
Prepare 0.9.2
2 parents 0d6adea + c7c0e47 commit 3eb2acd

File tree

4 files changed

+18
-244
lines changed

4 files changed

+18
-244
lines changed

README.md

+7
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.2**
57+
Fixes issues with scheduling and trashing posts in block editor.
58+
5659
**0.9.1**
5760
Bump PHP minimum to 5.6 to match WordPress core. Plus, various bug fixes.
5861

@@ -109,6 +112,10 @@ New features, including story budget and editorial metadata, a completely rewrit
109112

110113
## Changelog
111114

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)
117+
118+
112119
**0.9.1 (November 4, 2019)**
113120
* Bug fix: Prevent custom status from being reverted when using Gutenberg (https://github.com/Automattic/Edit-Flow/pull/521 -- props mikeyarce, batmoo)
114121
* Bug fix: Don't break post previews when using custom statuses (https://github.com/Automattic/Edit-Flow/pull/515 -- props

blocks/dist/custom-status.build.js

+1-240
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+8-2
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.1
8+
Stable tag: 0.9.2
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.2 =
61+
Fixes issues with scheduling and trashing posts in block editor.
62+
6063
= 0.9.1 =
6164
Bump PHP minimum to 5.6 to match WordPress core. Plus, various bug fixes.
6265

@@ -113,7 +116,10 @@ New features, including story budget and editorial metadata, a completely rewrit
113116

114117
== Changelog ==
115118

116-
= 0.9.1 (November 4, 2019)
119+
= 0.9.1 (November 24, 2019) =
120+
* 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)
121+
122+
= 0.9.1 (November 4, 2019) =
117123
* Bug fix: Prevent custom status from being reverted when using Gutenberg (https://github.com/Automattic/Edit-Flow/pull/521 -- props mikeyarce, batmoo)
118124
* Bug fix: Don't break post previews when using custom statuses (https://github.com/Automattic/Edit-Flow/pull/515 -- props
119125
rebeccahum)

0 commit comments

Comments
 (0)