Skip to content

Commit

Permalink
Bump to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajat1192 committed Sep 25, 2024
1 parent 8ce5094 commit 0d0e24b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: delete, bulk, clean, bulk delete, bulk clean, posts delete, delete all, ma
Requires at least: 4.9
Requires PHP: 5.3
Tested up to: 6.6
Stable tag: 1.3.1
Stable tag: 1.3.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -165,6 +165,9 @@ We are working on providing more options :)

== Changelog ==

= 1.3.2 =
* IMPROVEMENTS: XSS Security Bugs

= 1.3.1 =
* ADDED: WooCommerce Order Trash Status
* FIX: Multiple Schedule Delete Running bug
Expand Down
8 changes: 4 additions & 4 deletions wp-bulk-delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WP Bulk Delete
* Plugin URI: http://xylusthemes.com/plugins/wp-bulk-delete/
* Description: Bulk delete and cleanup anything like posts, comments, users, meta fields, taxonomy terms. with powerful filter options.
* Version: 1.3.1
* Version: 1.3.2
* Author: Xylus Themes
* Author URI: http://xylusthemes.com
* License: GPL-2.0+
Expand Down Expand Up @@ -72,14 +72,14 @@ private function __construct() { /* Do nothing here */ }
*
* @since 1.0.0
*/
public function __clone() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.3.1' ); }
public function __clone() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.3.2' ); }

/**
* A dummy magic method to prevent WP_Bulk_Delete from being unserialized.
*
* @since 1.0.0
*/
public function __wakeup() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.3.1' ); }
public function __wakeup() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.3.2' ); }


/**
Expand All @@ -93,7 +93,7 @@ private function setup_constants() {

// Plugin version.
if( ! defined( 'WPBD_VERSION' ) ){
define( 'WPBD_VERSION', '1.3.1' );
define( 'WPBD_VERSION', '1.3.2' );
}

// Plugin folder Path.
Expand Down

0 comments on commit 0d0e24b

Please sign in to comment.