Skip to content

Commit c921564

Browse files
authored
Merge pull request #601 from Automattic/update/0.9.5
Prepare 0.9.5
2 parents 58cccda + e4f121b commit c921564

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

README.md

+10
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.5**
57+
Fix bugs around slugs, plus some localization improvements and other bug fixes
58+
5659
**0.9.4**
5760
Updates to post list custom status UI. Plus, updates to API and bug fixes.
5861

@@ -118,6 +121,13 @@ New features, including story budget and editorial metadata, a completely rewrit
118121

119122
## Changelog
120123

124+
**0.9.5 (April 8, 2020)**
125+
* Bug fix: Fix bug preventing previewing posts authored by other users (https://github.com/Automattic/Edit-Flow/pull/597 -- props mallorydxw)
126+
* Imrpovement: Status dropdowns are now be Edit Flow specific but filterable (https://github.com/Automattic/Edit-Flow/pull/595)
127+
* Improvement: Support i18n in Story Budget date picker (https://github.com/Automattic/Edit-Flow/pull/569)
128+
* Bug fix: Prevent multiple custom fields from being created (https://github.com/Automattic/Edit-Flow/pull/591)
129+
* Bug fix: Fix slug behavior (https://github.com/Automattic/Edit-Flow/pull/575)
130+
121131
**0.9.4 (February 4, 2020)**
122132
* Bug fix: Move 'Customize' link in metadata metabox to inside metabox (https://github.com/Automattic/Edit-Flow/pull/590 -- props jsit)
123133
* Bug fix: Fix ef_custom_status_list filter on get_custom_statuses (https://github.com/Automattic/Edit-Flow/pull/587 -- props jsit)

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

+12-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Donate link: http://editflow.org/contribute/
44
Tags: edit flow, workflow, editorial, newsroom, management, journalism, post status, custom status, notifications, email, comments, editorial comments, usergroups, calendars, editorial calendar, story budget
55
Requires at least: 5.1
66
Requires PHP: 5.6
7-
Tested up to: 5.3
8-
Stable tag: 0.9.4
7+
Tested up to: 5.4
8+
Stable tag: 0.9.5
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.5 =
61+
Fix bugs around slugs, plus some localization improvements and other bug fixes
62+
6063
= 0.9.4 =
6164
Updates to post list custom status UI. Plus, updates to API and bug fixes.
6265

@@ -122,6 +125,13 @@ New features, including story budget and editorial metadata, a completely rewrit
122125

123126
== Changelog ==
124127

128+
= 0.9.5 (April 8, 2020) =
129+
* Bug fix: Fix bug preventing previewing posts authored by other users (https://github.com/Automattic/Edit-Flow/pull/597 -- props mallorydxw)
130+
* Imrpovement: Status dropdowns are now be Edit Flow specific but filterable (https://github.com/Automattic/Edit-Flow/pull/595)
131+
* Improvement: Support i18n in Story Budget date picker (https://github.com/Automattic/Edit-Flow/pull/569)
132+
* Bug fix: Prevent multiple custom fields from being created (https://github.com/Automattic/Edit-Flow/pull/591)
133+
* Bug fix: Fix slug behavior (https://github.com/Automattic/Edit-Flow/pull/575)
134+
125135
= 0.9.4 (February 4, 2020) =
126136
* Bug fix: Move 'Customize' link in metadata metabox to inside metabox (https://github.com/Automattic/Edit-Flow/pull/590 -- props jsit)
127137
* Bug fix: Fix ef_custom_status_list filter on get_custom_statuses (https://github.com/Automattic/Edit-Flow/pull/587 -- props jsit)

0 commit comments

Comments
 (0)