diff --git a/package.json b/package.json index 09ae3c3c91..3c71ad3595 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wp-e-commerce", - "version": "3.11.5", + "version": "3.11.6", "private": true, "devDependencies": { "grunt": "^0.4.5", diff --git a/readme.txt b/readme.txt index 172890a9b7..e9a1a1a439 100755 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://wpecommerce.org Tags: e-commerce, digital downloads, wp-e-commerce, shop, cart, paypal, authorize, stock control, ecommerce, shipping, tax Requires at least: 4.5 Tested up to: 4.7.2 -Stable tag: 3.11.5 +Stable tag: 3.11.6 WP eCommerce is a free, powerful plugin that empowers you to sell anything online, quickly and easily. @@ -36,6 +36,10 @@ After upgrading from earlier versions look for link "Update Store". This will up == Changelog == += 3.11.6 [2017-2-05] = + +* Fix: In PHP versions prior to 5.5, we caused a fatal error. Our apologies are sincere, but update your PHP! + = 3.11.5 [2017-2-04] = * Fix: Our extension page had some dated code which, in a bizarre turn of events, caused bulk select to break for all list tables. Mystery of mysteries, solved. diff --git a/wp-shopping-cart.php b/wp-shopping-cart.php index 48cf39ddc3..dbab19cc35 100644 --- a/wp-shopping-cart.php +++ b/wp-shopping-cart.php @@ -3,7 +3,7 @@ * Plugin Name: WP eCommerce * Plugin URI: http://wpecommerce.org/ * Description: A plugin that provides a WordPress Shopping Cart. See also: WPeCommerce.org | Support Forum | Documentation - * Version: 3.11.5 + * Version: 3.11.6 * Author: WP eCommerce * Author URI: http://wpecommerce.org/ * Text Domain: wp-e-commerce diff --git a/wpsc-core/wpsc-constants.php b/wpsc-core/wpsc-constants.php index 3203cc3495..a64c5c6088 100644 --- a/wpsc-core/wpsc-constants.php +++ b/wpsc-core/wpsc-constants.php @@ -55,15 +55,15 @@ function wpsc_core_constants() { // Define Plugin version if ( ! defined( 'WPSC_VERSION' ) ) { - define( 'WPSC_VERSION' , '3.11.5' ); + define( 'WPSC_VERSION' , '3.11.6' ); } if ( ! defined( 'WPSC_MINOR_VERSION' ) ) { - define( 'WPSC_MINOR_VERSION' , '6a4ceb9' ); + define( 'WPSC_MINOR_VERSION' , '94d2a7a' ); } if ( ! defined( 'WPSC_PRESENTABLE_VERSION' ) ) { - define( 'WPSC_PRESENTABLE_VERSION', '3.11.5' ); + define( 'WPSC_PRESENTABLE_VERSION', '3.11.6' ); } // Define a salt to use when we hash, WPSC_SALT may be defined for us in our config file, so check first