Skip to content

Commit

Permalink
Merge pull request #544 from Automattic/update/0.9.1
Browse files Browse the repository at this point in the history
Readme and version bump for 0.9.1
  • Loading branch information
mjangda committed Nov 4, 2019
2 parents 9a92c60 + 4b8f915 commit 6dbc835
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 9 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ For support questions, feedback and ideas, please use the [WordPress.org forums]

## Upgrade Notice

**0.9.1**
Bump PHP minimum to 5.6 to match WordPress core. Plus, various bug fixes.

**0.9**
Bump minimum version of PHP to 5.4. Start implementation of Block Editor compatible modules, various improvements and bugfixes.

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

## Changelog

**0.9.1 (November 4, 2019)**
* Bug fix: Prevent custom status from being reverted when using Gutenberg (https://github.com/Automattic/Edit-Flow/pull/521 -- props mikeyarce, batmoo)
* Bug fix: Don't break post previews when using custom statuses (https://github.com/Automattic/Edit-Flow/pull/515 -- props
rebeccahum)
* 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)
* Bug fix: prevent fatals when editing posts on the frontend via certain plugins (https://github.com/Automattic/Edit-Flow/pull/538 -- props kjohnson, dchymko)
* Bug fix: Don't break classic editor when custom statuses are disabled (https://github.com/Automattic/Edit-Flow/pull/537 -- props batmoo, thesquaremedia)
* Bug fix: Prevent `count()` warning on PHP 7.2 (https://github.com/Automattic/Edit-Flow/pull/534 -- props batmoo, NeilWJames)
* Bug fix: Prevent multiple plugin entries on the plugins page (https://github.com/Automattic/Edit-Flow/pull/530 -- props batmoo, mboynes, joshbetz)
* Bug fix: jQuery compatibility issues (https://github.com/Automattic/Edit-Flow/pull/499 -- props jameslesliemiller)
* Dev: Fix Travis CI Tests (props dchymko)
* Bonus props to jerclarke, mikeyarce, rebeccahum, rinatkhaziev, dchymko, and batmoo for helping with issues/PRs/testing.

**0.9 (January 10, 2018)**
* Feature: Block Editor compatibility for Custom Status module. Props [rinatkhaziev](https://github.com/rinatkhaziev). See [BLOCKS.md](BLOCKS.md) for details.
* Feature: new filter `ef_calendar_item_html` for Calendar module that allows to print custom markup for each day.
Expand Down
8 changes: 4 additions & 4 deletions edit_flow.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin URI: http://editflow.org/
Description: Remixing the WordPress admin for better editorial workflow options.
Author: Daniel Bachhuber, Scott Bressler, Mohammad Jangda, Automattic, and others
Version: 0.9
Version: 0.9.1
Author URI: http://editflow.org/
Copyright 2009-2019 Mohammad Jangda, Daniel Bachhuber, Automattic, et al.
Expand Down Expand Up @@ -35,18 +35,18 @@
function _ef_print_php_version_admin_notice() {
?>
<div class="notice notice-error">
<p><?php esc_html_e( 'Edit Flow requires PHP 5.4+. Please contact your host to update your PHP version.', 'edit-flow' ); ?></p>
<p><?php esc_html_e( 'Edit Flow requires PHP 5.6+. Please contact your host to update your PHP version.', 'edit-flow' ); ?></p>
</div>
<?php
}

if ( version_compare( phpversion(), '5.4', '<' ) ) {
if ( version_compare( phpversion(), '5.6', '<' ) ) {
add_action( 'admin_notices', '_ef_print_php_version_admin_notice' );
return;
}

// Define contants
define( 'EDIT_FLOW_VERSION' , '0.9' );
define( 'EDIT_FLOW_VERSION' , '0.9.1' );
define( 'EDIT_FLOW_ROOT' , dirname(__FILE__) );
define( 'EDIT_FLOW_FILE_PATH' , EDIT_FLOW_ROOT . '/' . basename(__FILE__) );
define( 'EDIT_FLOW_URL' , plugins_url( '/', __FILE__ ) );
Expand Down
24 changes: 19 additions & 5 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ Tags: edit flow, workflow, editorial, newsroom, management, journalism, post sta
Requires at least: 5.1
Requires PHP: 5.6
Tested up to: 5.3
Stable tag: 0.9
Stable tag: 0.9.1

Redefining your editorial workflow.

== Description ==

[![Build Status](https://travis-ci.org/Automattic/Edit-Flow.svg?branch=master)](https://travis-ci.org/Automattic/Edit-Flow)

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:

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

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

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]).
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]).

== Screenshots ==

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

== Upgrade Notice ==

= 0.9 =
= 0.9.1 =
Bump PHP minimum to 5.6 to match WordPress core. Plus, various bug fixes.

= 0.9 =
Bump minimum version of PHP to 5.4. Start implementation of Block Editor compatible modules, various improvements and bugfixes.

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

== Changelog ==

= 0.9.1 (November 4, 2019)
* Bug fix: Prevent custom status from being reverted when using Gutenberg (https://github.com/Automattic/Edit-Flow/pull/521 -- props mikeyarce, batmoo)
* Bug fix: Don't break post previews when using custom statuses (https://github.com/Automattic/Edit-Flow/pull/515 -- props
rebeccahum)
* 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)
* Bug fix: prevent fatals when editing posts on the frontend via certain plugins (https://github.com/Automattic/Edit-Flow/pull/538 -- props kjohnson, dchymko)
* Bug fix: Don't break classic editor when custom statuses are disabled (https://github.com/Automattic/Edit-Flow/pull/537 -- props batmoo, thesquaremedia)
* Bug fix: Prevent `count()` warning on PHP 7.2 (https://github.com/Automattic/Edit-Flow/pull/534 -- props batmoo, NeilWJames)
* Bug fix: Prevent multiple plugin entries on the plugins page (https://github.com/Automattic/Edit-Flow/pull/530 -- props batmoo, mboynes, joshbetz)
* Bug fix: jQuery compatibility issues (https://github.com/Automattic/Edit-Flow/pull/499 -- props jameslesliemiller)
* Dev: Fix Travis CI Tests (props dchymko)
* Bonus props to jerclarke, mikeyarce, rebeccahum, rinatkhaziev, dchymko, and batmoo for helping with issues/PRs/testing.

= 0.9 (January 10, 2018) =
* Feature: Block Editor compatibility for Custom Status module. Props [rinatkhaziev](https://github.com/rinatkhaziev). See [BLOCKS.md](BLOCKS.md) for details.
* Feature: new filter `ef_calendar_item_html` for Calendar module that allows to print custom markup for each day.
Expand Down

0 comments on commit 6dbc835

Please sign in to comment.