Skip to content

Commit 06ec648

Browse files
committed
chore: bump version to 1.8.0
- Refactored Plugin class to extend AbstractPlugin base class - Refactored SettingsTab to extend AbstractSettingsTab - Removed duplicated singleton boilerplate and manual textdomain loading
1 parent d1edc47 commit 06ec648

4 files changed

Lines changed: 17 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.8.0] - 2026-03-14
9+
10+
### Changed
11+
12+
- Refactored Plugin class to extend `VirtualMediaFolders\Addon\AbstractPlugin` base class
13+
- Refactored SettingsTab to extend `AbstractSettingsTab`, removed inline enqueue and WP 7 compat logic
14+
- Removed duplicated singleton boilerplate and manual textdomain loading
15+
816
## [1.7.0] - 2026-03-10
917

1018
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vmfa-editorial-workflow",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"description": "Role-based folder access, move restrictions, and Inbox workflow for Virtual Media Folders.",
55
"author": "Per Soderlind",
66
"license": "GPL-2.0-or-later",

readme.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: media, folders, workflow, editorial, permissions
44
Requires at least: 6.8
55
Tested up to: 7.0
66
Requires PHP: 8.3
7-
Stable tag: 1.7.0
7+
Stable tag: 1.8.0
88
License: GPL-2.0-or-later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -95,6 +95,11 @@ Existing media is not affected. The workflow only applies to new uploads and exp
9595

9696
== Changelog ==
9797

98+
= 1.8.0 =
99+
* Changed: Refactored Plugin class to extend VMF core `AbstractPlugin` base class
100+
* Changed: Refactored SettingsTab to extend `AbstractSettingsTab`
101+
* Changed: Removed duplicated singleton boilerplate and manual textdomain loading
102+
98103
= 1.7.0 =
99104
* Added: WP 7.0+ design-token style overrides for settings and review pages
100105

vmfa-editorial-workflow.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Virtual Media Folders - Editorial Workflow
44
* Plugin URI: https://github.com/soderlind/vmfa-editorial-workflow
55
* Description: Role-based folder access, move restrictions, and Inbox workflow for Virtual Media Folders.
6-
* Version: 1.7.0
6+
* Version: 1.8.0
77
* Requires at least: 6.8
88
* Requires PHP: 8.3
99
* Tested up to: 6.9
@@ -26,7 +26,7 @@
2626
defined( 'ABSPATH' ) || exit;
2727

2828
// Plugin constants.
29-
define( 'VMFA_EDITORIAL_WORKFLOW_VERSION', '1.7.0' );
29+
define( 'VMFA_EDITORIAL_WORKFLOW_VERSION', '1.8.0' );
3030
define( 'VMFA_EDITORIAL_WORKFLOW_FILE', __FILE__ );
3131
define( 'VMFA_EDITORIAL_WORKFLOW_PATH', plugin_dir_path( __FILE__ ) );
3232
define( 'VMFA_EDITORIAL_WORKFLOW_URL', plugin_dir_url( __FILE__ ) );

0 commit comments

Comments
 (0)