Skip to content

Commit 07710e3

Browse files
authored
Merge pull request #688 from Automattic/release/0.9.7
Release 0.9.7
2 parents c7e3fa7 + 8586a41 commit 07710e3

File tree

3 files changed

+36
-4
lines changed

3 files changed

+36
-4
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ For support questions, feedback and ideas, please use the [WordPress.org forums]
5151

5252
## Upgrade Notice
5353

54+
**0.9.7**
55+
PHP 8 compatible now with various bug fixes
56+
5457
**0.9.6**
5558
Fix bug around post save, bring Gutenberg to Calendar filters
5659

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

123126
## Changelog
124127

128+
**0.9.7 (August 26, 2022)**
129+
* Bug fix: Allow scheduled posts to be shifted around on calendar (https://github.com/Automattic/Edit-Flow/pull/614)
130+
* Bug fix: Add back unpublish status, small css tweak for statuses (https://github.com/Automattic/Edit-Flow/pull/613)
131+
* Enhancements: Renaming some frontend calendar configuration variable (https://github.com/Automattic/Edit-Flow/pull/615)
132+
* Bug fix: Swap join() with implode() for PHP 8 compatibility (https://github.com/Automattic/Edit-Flow/pull/627)
133+
* Enhancements: Give each attribute in Edit Flow settings page a different id (https://github.com/Automattic/Edit-Flow/pull/650)
134+
* Bug fix: Fix test_story_budget_set_number_days_filter_invalid in PHP 8.0 (https://github.com/Automattic/Edit-Flow/pull/644)
135+
* Bug fix: Allow updating post slugs in Quick Edit and Classic Editor with a different status from published (https://github.com/Automattic/Edit-Flow/pull/648)
136+
* Bug fix: Fix jQuery warnings as WordPress upgraded it from 1.12.4-wp to 3.5.1 (https://github.com/Automattic/Edit-Flow/pull/649)
137+
* Enhancements: Remove redundant jQuery selector #the-list a.editinline (https://github.com/Automattic/Edit-Flow/pull/668)
138+
* Enhancements: Remove redundant jQuery selector #toggle_details (https://github.com/Automattic/Edit-Flow/pull/669)
139+
* Bug fix: Fixes non-variable being passed by reference (https://github.com/Automattic/Edit-Flow/pull/667)
140+
125141
**0.9.6 (April 26, 2020)**
126142
* Bug fix: Fix bug causing error on save button click for post after hovering over button (https://github.com/Automattic/Edit-Flow/pull/604)
127143
* Enhancements: Bring Gutenebrg to Calendar filters (https://github.com/Automattic/Edit-Flow/pull/603)

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

+18-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.2
66
Requires PHP: 5.6
7-
Tested up to: 5.4
8-
Stable tag: 0.9.6
7+
Tested up to: 5.8
8+
Stable tag: 0.9.7
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.7 =
61+
PHP 8 compatible now with various bug fixes
62+
6063
= 0.9.6 =
6164
Fix bug around post save, bring Gutenberg to Calendar filters
6265

@@ -128,6 +131,19 @@ New features, including story budget and editorial metadata, a completely rewrit
128131

129132
== Changelog ==
130133

134+
= 0.9.7 (Aug 26, 2022) =
135+
* Bug fix: Allow scheduled posts to be shifted around on calendar (https://github.com/Automattic/Edit-Flow/pull/614)
136+
* Bug fix: Add back unpublish status, small css tweak for statuses (https://github.com/Automattic/Edit-Flow/pull/613)
137+
* Enhancements: Renaming some frontend calendar configuration variable (https://github.com/Automattic/Edit-Flow/pull/615)
138+
* Bug fix: Swap join() with implode() for PHP 8 compatibility (https://github.com/Automattic/Edit-Flow/pull/627)
139+
* Enhancements: Give each attribute in Edit Flow settings page a different id (https://github.com/Automattic/Edit-Flow/pull/650)
140+
* Bug fix: Fix test_story_budget_set_number_days_filter_invalid in PHP 8.0 (https://github.com/Automattic/Edit-Flow/pull/644)
141+
* Bug fix: Allow updating post slugs in Quick Edit and Classic Editor with a different status from published (https://github.com/Automattic/Edit-Flow/pull/648)
142+
* Bug fix: Fix jQuery warnings as WordPress upgraded it from 1.12.4-wp to 3.5.1 (https://github.com/Automattic/Edit-Flow/pull/649)
143+
* Enhancements: Remove redundant jQuery selector #the-list a.editinline (https://github.com/Automattic/Edit-Flow/pull/668)
144+
* Enhancements: Remove redundant jQuery selector #toggle_details (https://github.com/Automattic/Edit-Flow/pull/669)
145+
* Bug fix: Fixes non-variable being passed by reference (https://github.com/Automattic/Edit-Flow/pull/667)
146+
131147
= 0.9.6 (April 26, 2020) =
132148
* Bug fix: Fix bug causing error on save button click for post after hovering over button (https://github.com/Automattic/Edit-Flow/pull/604)
133149
* Enhancements: Bring Gutenebrg to Calendar filters (https://github.com/Automattic/Edit-Flow/pull/603)

0 commit comments

Comments
 (0)