From b4df544ad65fb8b61a122f0d2ebc310d14259857 Mon Sep 17 00:00:00 2001 From: mhossain Date: Thu, 30 Mar 2017 15:29:20 -0400 Subject: [PATCH] v3.0.0 release prep --- readme.txt | 8 +++++++- wordpress-sparkpost.php | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index cef66c27..b48ed7e7 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: sparkpost, rajuru Tags: sparkpost, smtp, wp_mail, mail, email Requires at least: 4.3 Tested up to: 4.7.2 -Stable tag: 2.6.4 +Stable tag: 3.0.0 License: GPLv2 or later Send all your email from WordPress through SparkPost, the most advanced email delivery service. @@ -46,6 +46,12 @@ Visit plugin's [official issue tracker](https://github.com/SparkPost/wordpress-s == Changelog == + += 3.0.0 = +- Support attachments in template ([#97](https://github.com/SparkPost/wordpress-sparkpost/issues/97)). Add `Templates: Read/Write` permission to API Key for this to work! +- Tested in WordPress v4.7.3 +- Fix sending email with sandbox ([#109](https://github.com/SparkPost/wordpress-sparkpost/issues/109)) + = 2.6.4 = - Fix the issue to use template hook when not set in settings ([#95](https://github.com/SparkPost/wordpress-sparkpost/issues/95)) - Clarify attachment can't be sent with template and include workaround example ([#96](https://github.com/SparkPost/wordpress-sparkpost/issues/96)) diff --git a/wordpress-sparkpost.php b/wordpress-sparkpost.php index 27496f61..5213f5d2 100644 --- a/wordpress-sparkpost.php +++ b/wordpress-sparkpost.php @@ -4,7 +4,7 @@ Plugin Name: SparkPost Plugin URI: http://sparkpost.com/ Description: Send all your email from Wordpress through SparkPost, the world's most advanced email delivery service. -Version: 2.6.4 +Version: 3.0.0 Author: SparkPost Author URI: http://sparkpost.com License: GPLv2 or later @@ -17,7 +17,7 @@ define('WPSP_PLUGIN_DIR', plugin_dir_path(__FILE__)); define('WPSP_PLUGIN_PATH', WPSP_PLUGIN_DIR . basename(__FILE__)); -define('WPSP_PLUGIN_VERSION', '2.6.4'); +define('WPSP_PLUGIN_VERSION', '3.0.0'); require_once(WPSP_PLUGIN_DIR . 'sparkpost.class.php');