Skip to content

Commit 2e783be

Browse files
authored
Merge pull request #875 from Automattic/release/0.10.1
2 parents 23b8196 + 519cc5d commit 2e783be

13 files changed

Lines changed: 575 additions & 154 deletions

File tree

.distignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/.git/
33
/.github/
44
/.claude/
5+
/.wordpress-org/
56
/.phpunit.cache/
67
/artifacts/
78
/bin/

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ on:
88
# Workflow-level permissions set to none; jobs declare their own minimal permissions
99
permissions: {}
1010

11+
# Cancels all previous workflow runs for the same branch that have not yet completed.
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
1116
jobs:
1217
release:
1318
name: Deploy to WordPress.org
@@ -35,11 +40,6 @@ jobs:
3540
- name: Build assets
3641
run: npm run build
3742

38-
- name: Install SVN
39-
run: |
40-
sudo apt-get update
41-
sudo apt-get install -y subversion
42-
4343
- name: Deploy to WordPress.org
4444
uses: 10up/action-wordpress-plugin-deploy@54bd289b8525fd23a5c365ec369185f2966529c2 # v2.3.0
4545
with:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.10.1] - 2026-01-07
8+
9+
### Fixed
10+
11+
* fix: correct nonce action for Classic Editor post saves by @GaryJones in [#873](https://github.com/Automattic/Edit-Flow/pull/873)
12+
* fix: return JSON response for user group subscription AJAX saves by @GaryJones in [#874](https://github.com/Automattic/Edit-Flow/pull/874)
13+
714
## [0.10.0] - 2026-01-02
815

916
This is a major update with significant bug fixes, new features, and modernised infrastructure.
@@ -378,6 +385,7 @@ This is a major update with significant bug fixes, new features, and modernised
378385

379386
* Ability to assign custom statuses to posts.
380387

388+
[0.10.1]: https://github.com/Automattic/Edit-Flow/compare/0.10.0...0.10.1
381389
[0.10.0]: https://github.com/Automattic/Edit-Flow/compare/0.9.9...0.10.0
382390
[0.9.9]: https://github.com/Automattic/Edit-Flow/compare/0.9.8...0.9.9
383391
[0.9.8]: https://github.com/Automattic/Edit-Flow/compare/0.9.7...0.9.8

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Tags: workflow, editorial, editorial calendar, custom status, newsroom
66
Requires at least: 6.4
77
Requires PHP: 7.4
88
Tested up to: 6.9
9-
Stable tag: 0.10.0
9+
Stable tag: 0.10.1
1010

1111
Redefining your editorial workflow.
1212

edit_flow.php

Lines changed: 1 addition & 1 deletion
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.10.0
7+
* Version: 0.10.1
88
* Requires at least: 6.4
99
* Requires PHP: 7.4
1010
* License: GPLv2 or later

0 commit comments

Comments
 (0)