Skip to content

Commit

Permalink
Merge pull request #306 from mailjet/529
Browse files Browse the repository at this point in the history
release
  • Loading branch information
uavn authored May 12, 2021
2 parents 63a6f24 + 981593e commit 3dd5da5
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
5 changes: 4 additions & 1 deletion 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: 5.7.1
- Stable tag: 5.2.8
- Stable tag: 5.2.9
- Requires PHP: 5.6
- License: GPLv2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -206,6 +206,9 @@ find vendor/ -type d -name ".git" -exec rm -rf {} \;

## Changelog

##### 5.2.9
* Fixed PHP 7 issue

##### 5.2.8
* Fixed PHP 7 issue

Expand Down
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: Mailjet
Tags: email, marketing, signup, newsletter, widget, smtp, woocommerce, contact form 7
Requires at least: 4.4
Tested up to: 5.7.1
Stable tag: 5.2.8
Stable tag: 5.2.9
Requires PHP: 5.6
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -203,6 +203,9 @@ find vendor/ -type d -name ".git" -exec rm -rf {} \;

== Changelog ==

= 5.2.9 =
* Fixed PHP 7 issue

= 5.2.8 =
* Fixed PHP 7 issue

Expand Down
2 changes: 1 addition & 1 deletion src/includes/Mailjet.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function __construct()
if (defined('MAILJET_VERSION')) {
$this->version = MAILJET_VERSION;
} else {
$this->version = '5.2.8';
$this->version = '5.2.9';
}
$this->plugin_name = 'mailjet';

Expand Down
2 changes: 1 addition & 1 deletion src/includes/MailjetUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public static function updateToV5_2_1() {
if (!empty($pluginVersion)) {
return;
}
add_option('mailjet_plugin_version', '5.2.8');
add_option('mailjet_plugin_version', '5.2.9');
delete_option('mailjet_access_administrator');
delete_option('mailjet_access_author');
delete_option('mailjet_access_editor');
Expand Down
2 changes: 1 addition & 1 deletion src/widget/WP_Mailjet_Subscribe_Widget.php
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ private function activateConfirmSubscriptionUrl()

wp_enqueue_style(
'ubuntu-google-font',
'http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700',
'http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700'
);

$thankYouPageTemplate = apply_filters('mailjet_thank_you_page_template', plugin_dir_path(__FILE__) . 'templates' . DIRECTORY_SEPARATOR . 'thankyou.php');
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.8
* Version: 5.2.9
* Author: Mailjet SAS
* Author URI: http://mailjet.com
* License: GPL-2.0+
Expand Down Expand Up @@ -54,7 +54,7 @@
/**
* Mailjet plugin version.
*/
define('MAILJET_VERSION', '5.2.8');
define('MAILJET_VERSION', '5.2.9');

/**
* Mailjet Plugid dir.
Expand Down

0 comments on commit 3dd5da5

Please sign in to comment.