diff --git a/CHANGELOG.md b/CHANGELOG.md index c6ab2ac..7a378df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [2.1.0] - 2022-03-17 + +* Enhancement: Hide disbaled sidebar widgets when widget block editor is enabled. +* Changed: Requires at least PHP 5.6 and WordPress 4.7. + ## [2.0.0] - 2020-02-02 * New: Allows removal of the "Browse Happy" and "PHP Update Required" widgets in the dashboard to suppress remote API requests. @@ -79,6 +84,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * German (de_DE) translations added. [Unreleased]: https://github.com/wearerequired/WP-Widget-Disable/compare/2.0.0...master +[2.1.0]: https://github.com/wearerequired/WP-Widget-Disable/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/wearerequired/WP-Widget-Disable/compare/1.9.0...2.0.0 [1.9.1]: https://github.com/wearerequired/WP-Widget-Disable/compare/1.9.0...1.9.1 [1.9.0]: https://github.com/wearerequired/WP-Widget-Disable/compare/1.8.0...1.9.0 diff --git a/classes/class-wp-widget-disable.php b/classes/class-wp-widget-disable.php index 79cf969..3da6035 100644 --- a/classes/class-wp-widget-disable.php +++ b/classes/class-wp-widget-disable.php @@ -10,7 +10,7 @@ class WP_Widget_Disable { /** * Plugin version. */ - const VERSION = '2.0.0'; + const VERSION = '2.1.0'; /** * Sidebar widgets option key. diff --git a/readme.txt b/readme.txt index ec2481f..5045c56 100644 --- a/readme.txt +++ b/readme.txt @@ -2,9 +2,9 @@ Contributors: wearerequired, neverything, swissspidy, ocean90, grapplerulrich Tags: widgets, admin, dashboard, sidebar widgets, dashboard widgets, disable widgets Requires at least: 4.7 -Tested up to: 5.8 +Tested up to: 5.9 Requires PHP: 5.6 -Stable tag: 2.0.0 +Stable tag: 2.1.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -48,6 +48,11 @@ None so far. But you can ask us any time on [twitter](https://twitter.com/wearer ## Changelog +### 2.1.0 - 2022-03-17 + +* Enhancement: Hide disbaled sidebar widgets when widget block editor is enabled. +* Changed: Requires at least PHP 5.6 and WordPress 4.7. + ### 2.0.0 - 2020-02-02 * New: Allows removal of the "Browse Happy" and "PHP Update Required" widgets in the dashboard to suppress remote API requests. diff --git a/wp-widget-disable.php b/wp-widget-disable.php index a01f45e..99f6d81 100644 --- a/wp-widget-disable.php +++ b/wp-widget-disable.php @@ -3,13 +3,13 @@ * Plugin Name: Widget Disable * Plugin URI: https://required.com/services/wordpress-plugins/wp-widget-disable/ * Description: Disable sidebar and dashboard widgets with an easy to use interface. Simply use the checkboxes provided under Appearance -> Disable Widgets and select the widgets you'd like to hide. - * Version: 2.0.0 + * Version: 2.1.0 * Author: required * Author URI: https://required.com * License: GPLv2+ * Text Domain: wp-widget-disable * - * Copyright (c) 2015-2020 required (email: support@required.ch) + * Copyright (c) 2015-2022 required (email: support@required.ch) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2 or, at