Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
BracketSpaceWorker committed Nov 4, 2021
1 parent 4f0e918 commit 004ec1f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion compat/src-deprecated/Utils/Cache/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand Down
2 changes: 1 addition & 1 deletion compat/src-deprecated/Utils/Cache/ObjectCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 );

Expand Down
2 changes: 1 addition & 1 deletion compat/src-deprecated/Utils/Cache/Transient.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 );

Expand Down
2 changes: 1 addition & 1 deletion notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Admin/ImportExport.php
Original file line number Diff line number Diff line change
Expand Up @@ -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<int,string> $items Items to export.
* @return array<int,string>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Sync.php
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 004ec1f

Please sign in to comment.