From 004ec1f76bcfc9df366c1c9bcf1113e85fd65ccc Mon Sep 17 00:00:00 2001 From: BracketSpaceWorker Date: Thu, 4 Nov 2021 11:40:10 +0000 Subject: [PATCH] Version bump --- compat/src-deprecated/Utils/Cache/Cache.php | 2 +- compat/src-deprecated/Utils/Cache/ObjectCache.php | 2 +- compat/src-deprecated/Utils/Cache/Transient.php | 2 +- notification.php | 2 +- readme.txt | 4 ++-- src/Admin/ImportExport.php | 2 +- src/Core/Sync.php | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/compat/src-deprecated/Utils/Cache/Cache.php b/compat/src-deprecated/Utils/Cache/Cache.php index 1f13eeae6..3b41aeed1 100644 --- a/compat/src-deprecated/Utils/Cache/Cache.php +++ b/compat/src-deprecated/Utils/Cache/Cache.php @@ -25,7 +25,7 @@ class Cache { * @param string $key cache unique key. */ public function __construct( $key ) { - notification_deprecated_class( __CLASS__, '[Next]', 'BracketSpace\\Notification\\Dependencies\\Micropackage\\Cache\\Cache' ); + notification_deprecated_class( __CLASS__, '8.0.2', 'BracketSpace\\Notification\\Dependencies\\Micropackage\\Cache\\Cache' ); if ( empty( $key ) ) { trigger_error( 'Cache key cannot be empty' ); diff --git a/compat/src-deprecated/Utils/Cache/ObjectCache.php b/compat/src-deprecated/Utils/Cache/ObjectCache.php index c79670d39..4e418d831 100644 --- a/compat/src-deprecated/Utils/Cache/ObjectCache.php +++ b/compat/src-deprecated/Utils/Cache/ObjectCache.php @@ -31,7 +31,7 @@ class ObjectCache extends Cache implements Cacheable { * @param string $group cache group, optional. */ public function __construct( $key, $group = '' ) { - notification_deprecated_class( __CLASS__, '[Next]', 'BracketSpace\\Notification\\Dependencies\\Micropackage\\Cache\\Driver\\ObjectCache' ); + notification_deprecated_class( __CLASS__, '8.0.2', 'BracketSpace\\Notification\\Dependencies\\Micropackage\\Cache\\Driver\\ObjectCache' ); parent::__construct( $key ); diff --git a/compat/src-deprecated/Utils/Cache/Transient.php b/compat/src-deprecated/Utils/Cache/Transient.php index 2c6a3b90c..2cb1e0e09 100644 --- a/compat/src-deprecated/Utils/Cache/Transient.php +++ b/compat/src-deprecated/Utils/Cache/Transient.php @@ -31,7 +31,7 @@ class Transient extends Cache implements Cacheable { * @param integer $expiration expiration in seconds. */ public function __construct( $key, $expiration = 0 ) { - notification_deprecated_class( __CLASS__, '[Next]', 'BracketSpace\\Notification\\Dependencies\\Micropackage\\Cache\\Driver\\Transient' ); + notification_deprecated_class( __CLASS__, '8.0.2', 'BracketSpace\\Notification\\Dependencies\\Micropackage\\Cache\\Driver\\Transient' ); parent::__construct( $key ); diff --git a/notification.php b/notification.php index 36899b5a2..c479f6926 100644 --- a/notification.php +++ b/notification.php @@ -4,7 +4,7 @@ * Description: Customisable email and webhook notifications with powerful developer friendly API for custom triggers and notifications. Send alerts easily. * Author: BracketSpace * Author URI: https://bracketspace.com - * Version: 8.0.1 + * Version: 8.0.2 * License: GPL3 * Text Domain: notification * Domain Path: /languages diff --git a/readme.txt b/readme.txt index 997af4bd6..ebc12e1ce 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: notification, bracketspace, Kubitomakita, tomaszadamowicz, insejn, Tags: notification, notify, alert, email, mail, webhook, API, developer, framework Requires at least: 4.9 Tested up to: 5.8 -Stable tag: 8.0.1 +Stable tag: 8.0.2 Requires PHP: 7.0 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -295,7 +295,7 @@ Yes, just activate the debug log in the DEBUGGING section of the plugin settings == Changelog == -= [Next] = += 8.0.2 = * [Added] HTML escaping and nonce verifications. * [Changed] Notification file syncing is now using Filesystem methods. diff --git a/src/Admin/ImportExport.php b/src/Admin/ImportExport.php index 36fc29d35..d44c790d7 100644 --- a/src/Admin/ImportExport.php +++ b/src/Admin/ImportExport.php @@ -120,7 +120,7 @@ public function export_request() { * * @throws \Exception When no items selected for export. * @since 6.0.0 - * @since [Next] Accepts the items argument, instead reading it from GET. + * @since 8.0.2 Accepts the items argument, instead reading it from GET. * @param array $items Items to export. * @return array */ diff --git a/src/Core/Sync.php b/src/Core/Sync.php index 3d89bdebd..87cd4fe4c 100644 --- a/src/Core/Sync.php +++ b/src/Core/Sync.php @@ -205,7 +205,7 @@ public static function get_sync_path() { /** * Gets the sync dir filesystem. * - * @since [Next] + * @since 8.0.2 * @return Filesystem|null */ public static function get_sync_fs() {