Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinSainton committed Feb 6, 2017
1 parent fb03617 commit 1615f57
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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.6
Stable tag: 3.11.7

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.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!
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.6
* Version: 3.11.7
* 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.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
Expand Down

0 comments on commit 1615f57

Please sign in to comment.