Skip to content

Commit 6dbc835

Browse files
authored
Merge pull request #544 from Automattic/update/0.9.1
Readme and version bump for 0.9.1
2 parents 9a92c60 + 4b8f915 commit 6dbc835

File tree

3 files changed

+39
-9
lines changed

3 files changed

+39
-9
lines changed

README.md

+16
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.1**
57+
Bump PHP minimum to 5.6 to match WordPress core. Plus, various bug fixes.
58+
5659
**0.9**
5760
Bump minimum version of PHP to 5.4. Start implementation of Block Editor compatible modules, various improvements and bugfixes.
5861

@@ -106,6 +109,19 @@ New features, including story budget and editorial metadata, a completely rewrit
106109

107110
## Changelog
108111

112+
**0.9.1 (November 4, 2019)**
113+
* Bug fix: Prevent custom status from being reverted when using Gutenberg (https://github.com/Automattic/Edit-Flow/pull/521 -- props mikeyarce, batmoo)
114+
* Bug fix: Don't break post previews when using custom statuses (https://github.com/Automattic/Edit-Flow/pull/515 -- props
115+
rebeccahum)
116+
* Bug fix: Don't auto-subscribe the current user when notification settings are changed (https://github.com/Automattic/Edit-Flow/pull/540 -- props dchymko, jerclarke, mikeyarce)
117+
* Bug fix: prevent fatals when editing posts on the frontend via certain plugins (https://github.com/Automattic/Edit-Flow/pull/538 -- props kjohnson, dchymko)
118+
* Bug fix: Don't break classic editor when custom statuses are disabled (https://github.com/Automattic/Edit-Flow/pull/537 -- props batmoo, thesquaremedia)
119+
* Bug fix: Prevent `count()` warning on PHP 7.2 (https://github.com/Automattic/Edit-Flow/pull/534 -- props batmoo, NeilWJames)
120+
* Bug fix: Prevent multiple plugin entries on the plugins page (https://github.com/Automattic/Edit-Flow/pull/530 -- props batmoo, mboynes, joshbetz)
121+
* Bug fix: jQuery compatibility issues (https://github.com/Automattic/Edit-Flow/pull/499 -- props jameslesliemiller)
122+
* Dev: Fix Travis CI Tests (props dchymko)
123+
* Bonus props to jerclarke, mikeyarce, rebeccahum, rinatkhaziev, dchymko, and batmoo for helping with issues/PRs/testing.
124+
109125
**0.9 (January 10, 2018)**
110126
* Feature: Block Editor compatibility for Custom Status module. Props [rinatkhaziev](https://github.com/rinatkhaziev). See [BLOCKS.md](BLOCKS.md) for details.
111127
* Feature: new filter `ef_calendar_item_html` for Calendar module that allows to print custom markup for each day.

edit_flow.php

+4-4
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
7+
Version: 0.9.1
88
Author URI: http://editflow.org/
99
1010
Copyright 2009-2019 Mohammad Jangda, Daniel Bachhuber, Automattic, et al.
@@ -35,18 +35,18 @@
3535
function _ef_print_php_version_admin_notice() {
3636
?>
3737
<div class="notice notice-error">
38-
<p><?php esc_html_e( 'Edit Flow requires PHP 5.4+. Please contact your host to update your PHP version.', 'edit-flow' ); ?></p>
38+
<p><?php esc_html_e( 'Edit Flow requires PHP 5.6+. Please contact your host to update your PHP version.', 'edit-flow' ); ?></p>
3939
</div>
4040
<?php
4141
}
4242

43-
if ( version_compare( phpversion(), '5.4', '<' ) ) {
43+
if ( version_compare( phpversion(), '5.6', '<' ) ) {
4444
add_action( 'admin_notices', '_ef_print_php_version_admin_notice' );
4545
return;
4646
}
4747

4848
// Define contants
49-
define( 'EDIT_FLOW_VERSION' , '0.9' );
49+
define( 'EDIT_FLOW_VERSION' , '0.9.1' );
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

+19-5
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@ 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
8+
Stable tag: 0.9.1
99

1010
Redefining your editorial workflow.
1111

1212
== Description ==
1313

14-
[![Build Status](https://travis-ci.org/Automattic/Edit-Flow.svg?branch=master)](https://travis-ci.org/Automattic/Edit-Flow)
15-
1614
Edit Flow empowers you to collaborate with your editorial team inside WordPress. We've made it modular so you can customize it to your needs:
1715

1816
* [Calendar](http://editflow.org/features/calendar/) - A convenient month-by-month look at your content.
@@ -47,7 +45,7 @@ Yep, in the sense that you can activate Edit Flow on each subsite. Edit Flow doe
4745

4846
All development happens on [GitHub](https://github.com/Automattic/Edit-Flow).
4947

50-
For support questions, feedback and ideas, please use the [WordPress.org forums](http://wordpress.org/tags/edit-flow?forum_id=10), which we look at often. For everything else, say [[email protected]](mailto:[email protected]).
48+
For support questions, feedback and ideas, please use the [WordPress.org forums](http://wordpress.org/tags/edit-flow?forum_id=10), which we look at often. For everything else, say [[email protected]](mailto:[email protected]).
5149

5250
== Screenshots ==
5351

@@ -59,7 +57,10 @@ For support questions, feedback and ideas, please use the [WordPress.org forums]
5957

6058
== Upgrade Notice ==
6159

62-
= 0.9 =
60+
= 0.9.1 =
61+
Bump PHP minimum to 5.6 to match WordPress core. Plus, various bug fixes.
62+
63+
= 0.9 =
6364
Bump minimum version of PHP to 5.4. Start implementation of Block Editor compatible modules, various improvements and bugfixes.
6465

6566
= 0.8.3 =
@@ -112,6 +113,19 @@ New features, including story budget and editorial metadata, a completely rewrit
112113

113114
== Changelog ==
114115

116+
= 0.9.1 (November 4, 2019)
117+
* Bug fix: Prevent custom status from being reverted when using Gutenberg (https://github.com/Automattic/Edit-Flow/pull/521 -- props mikeyarce, batmoo)
118+
* Bug fix: Don't break post previews when using custom statuses (https://github.com/Automattic/Edit-Flow/pull/515 -- props
119+
rebeccahum)
120+
* Bug fix: Don't auto-subscribe the current user when notification settings are changed (https://github.com/Automattic/Edit-Flow/pull/540 -- props dchymko, jerclarke, mikeyarce)
121+
* Bug fix: prevent fatals when editing posts on the frontend via certain plugins (https://github.com/Automattic/Edit-Flow/pull/538 -- props kjohnson, dchymko)
122+
* Bug fix: Don't break classic editor when custom statuses are disabled (https://github.com/Automattic/Edit-Flow/pull/537 -- props batmoo, thesquaremedia)
123+
* Bug fix: Prevent `count()` warning on PHP 7.2 (https://github.com/Automattic/Edit-Flow/pull/534 -- props batmoo, NeilWJames)
124+
* Bug fix: Prevent multiple plugin entries on the plugins page (https://github.com/Automattic/Edit-Flow/pull/530 -- props batmoo, mboynes, joshbetz)
125+
* Bug fix: jQuery compatibility issues (https://github.com/Automattic/Edit-Flow/pull/499 -- props jameslesliemiller)
126+
* Dev: Fix Travis CI Tests (props dchymko)
127+
* Bonus props to jerclarke, mikeyarce, rebeccahum, rinatkhaziev, dchymko, and batmoo for helping with issues/PRs/testing.
128+
115129
= 0.9 (January 10, 2018) =
116130
* Feature: Block Editor compatibility for Custom Status module. Props [rinatkhaziev](https://github.com/rinatkhaziev). See [BLOCKS.md](BLOCKS.md) for details.
117131
* Feature: new filter `ef_calendar_item_html` for Calendar module that allows to print custom markup for each day.

0 commit comments

Comments
 (0)