diff --git a/changelog.txt b/changelog.txt index 3d9de8fd6..78a8aff8a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,10 @@ = For newer changelog entries, see readme.txt = += 3.0.2 - 2016.06.14 = +* Fix - Set empty array as default value for first argument in WC_Stripe_Customer::create_customer +* Tweak - Update default title to make it consistent with existing titles + = 2.6.12 - 2016.04.13 = * Fix - When saved cards option is enabled with no cards on file, CC field was hidden. diff --git a/readme.txt b/readme.txt index 5abc46834..4199eeae7 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: automattic, woothemes, mikejolley, akeda, royho Tags: credit card, stripe, woocommerce Requires at least: 4.4 Tested up to: 4.5 -Stable tag: 3.0.1 +Stable tag: 3.0.2 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -87,6 +87,10 @@ If you get stuck, you can ask for help in the Plugin Forum. == Changelog == += 3.0.2 = +* Fix - Set empty array as default value for first argument in WC_Stripe_Customer::create_customer +* Tweak - Update default title to make it consistent with existing titles + = 3.0.1 = * Backwards compatibility update to prevent error finding WC_Payment_Token_CC. * Added inline validation of keys. diff --git a/woocommerce-gateway-stripe.php b/woocommerce-gateway-stripe.php index 4f7e490c7..6b8c5f0bc 100644 --- a/woocommerce-gateway-stripe.php +++ b/woocommerce-gateway-stripe.php @@ -5,7 +5,7 @@ * Description: Take credit card payments on your store using Stripe. * Author: Automattic * Author URI: http://woothemes.com/ - * Version: 3.0.1 + * Version: 3.0.2 * Text Domain: woocommerce-gateway-stripe * Domain Path: /languages * @@ -32,7 +32,7 @@ /** * Required minimums and constants */ -define( 'WC_STRIPE_VERSION', '3.0.1' ); +define( 'WC_STRIPE_VERSION', '3.0.2' ); define( 'WC_STRIPE_MIN_PHP_VER', '5.3.0' ); define( 'WC_STRIPE_MIN_WC_VER', '2.5.0' ); define( 'WC_STRIPE_MAIN_FILE', __FILE__ );