Skip to content

Commit

Permalink
Remove var_dump from the code
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-mykhailenko committed Aug 13, 2022
1 parent 34f8aa6 commit 038b31e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- Tags: email, marketing, signup, newsletter, widget, smtp, woocommerce, contact form 7
- Requires at least: 4.4
- Tested up to: 6.0.1
- Stable tag: 5.2.24
- Stable tag: 5.2.25
- Requires PHP: 5.6
- License: GPLv2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -205,7 +205,10 @@ find vendor/ -type d -name ".git" -exec rm -rf {} \;
7. Configure abandoned cart notifications for WooCommerce

## Changelog
##### 5.2.24
##### 5.2.25
* Removed var_dump from the code because off error

* ##### 5.2.24
* Fix bug with widget for WP 6+ version

##### 5.2.23
Expand Down
6 changes: 6 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ find vendor/ -type d -name ".git" -exec rm -rf {} \;
7. Configure abandoned cart notifications for WooCommerce

== Upgrade notice ==
= 5.2.25 =
* Removed var_dump from the code because off error

= 5.2.24 =
* Fix bug with widget for WP 6+ version

Expand Down Expand Up @@ -235,6 +238,9 @@ find vendor/ -type d -name ".git" -exec rm -rf {} \;
* Removed Bootstrap dependency

== Changelog ==
= 5.2.25 =
* Removed var_dump from the code because off error

= 5.2.24 =
* Fix bug with widget for WP 6+ version

Expand Down
2 changes: 1 addition & 1 deletion src/includes/Mailjet.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function __construct()
if (\defined('MAILJET_VERSION')) {
$this->version = MAILJET_VERSION;
} else {
$this->version = '5.2.24';
$this->version = '5.2.25';
}
$this->plugin_name = 'mailjet';
$this->load_dependencies();
Expand Down
4 changes: 2 additions & 2 deletions wp-mailjet.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Plugin Name: Mailjet for WordPress
* Plugin URI: https://www.mailjet.com/partners/wordpress/
* Description: The Best WordPress Plugin For Email Newsletters.
* Version: 5.2.24
* Version: 5.2.25
* Tested up to: 6.0.1
* Author: Mailjet SAS
* Author URI: http://mailjet.com
Expand Down Expand Up @@ -55,7 +55,7 @@
/**
* Mailjet plugin version.
*/
define('MAILJET_VERSION', '5.2.24');
define('MAILJET_VERSION', '5.2.25');

/**
* Mailjet Plugid dir.
Expand Down

0 comments on commit 038b31e

Please sign in to comment.