Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinSainton committed Feb 5, 2017
1 parent 47b1bb9 commit c6ea154
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wp-e-commerce",
"version": "3.11.5",
"version": "3.11.6",
"private": true,
"devDependencies": {
"grunt": "^0.4.5",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion wp-shopping-cart.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WP eCommerce
* Plugin URI: http://wpecommerce.org/
* Description: A plugin that provides a WordPress Shopping Cart. See also: <a href="http://wpecommerce.org" target="_blank">WPeCommerce.org</a> | <a href="https://wordpress.org/support/plugin/wp-e-commerce/" target="_blank">Support Forum</a> | <a href="http://docs.wpecommerce.org/" target="_blank">Documentation</a>
* Version: 3.11.5
* Version: 3.11.6
* Author: WP eCommerce
* Author URI: http://wpecommerce.org/
* Text Domain: wp-e-commerce
Expand Down
6 changes: 3 additions & 3 deletions wpsc-core/wpsc-constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c6ea154

Please sign in to comment.