From 1615f579a4ee3f9be4c4a8ac8745202ecf73d0c1 Mon Sep 17 00:00:00 2001 From: Justin Sainton Date: Sun, 5 Feb 2017 19:33:59 -0800 Subject: [PATCH] Version bump --- readme.md | 2 +- readme.txt | 6 +++++- wp-shopping-cart.php | 2 +- wpsc-core/wpsc-constants.php | 6 +++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/readme.md b/readme.md index 08e404af41..e7829ed1a9 100644 --- a/readme.md +++ b/readme.md @@ -17,7 +17,7 @@ If you're looking for general user support, please submit your support request o Development status ------------------------- -* The latest stable version is [3.11.5](http://wordpress.org/extend/plugins/wp-e-commerce). +* The latest stable version is [3.11.7](http://wordpress.org/extend/plugins/wp-e-commerce). * Active development version: 4.0-dev (branch [master](https://github.com/wp-e-commerce/WP-e-Commerce)) * [Roadmap for 4.0](https://github.com/wp-e-commerce/wp-e-commerce/wiki/Roadmap) * [4.0 tickets](https://github.com/wp-e-commerce/WP-e-Commerce/milestones/4.0) diff --git a/readme.txt b/readme.txt index e9a1a1a439..1a9a331ea8 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.6 +Stable tag: 3.11.7 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.7 [2017-2-05] = + +* Fix: In PHP versions prior to 5.5, we caused a fatal error. Our apologies are sincere, but update your PHP! Literally the same problem resolved in 3.11.6, just in a different context. We'll get better at supporting EOL PHP, the WordPress way. + = 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! diff --git a/wp-shopping-cart.php b/wp-shopping-cart.php index dbab19cc35..104d9410be 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.6 + * Version: 3.11.7 * 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 a64c5c6088..d8ad0e9b62 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.6' ); + define( 'WPSC_VERSION' , '3.11.7' ); } if ( ! defined( 'WPSC_MINOR_VERSION' ) ) { - define( 'WPSC_MINOR_VERSION' , '94d2a7a' ); + define( 'WPSC_MINOR_VERSION' , 'fb03617' ); } if ( ! defined( 'WPSC_PRESENTABLE_VERSION' ) ) { - define( 'WPSC_PRESENTABLE_VERSION', '3.11.6' ); + define( 'WPSC_PRESENTABLE_VERSION', '3.11.7' ); } // Define a salt to use when we hash, WPSC_SALT may be defined for us in our config file, so check first