Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinSainton committed Nov 11, 2016
1 parent 6fd2d64 commit baa75b8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 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.3](http://wordpress.org/extend/plugins/wp-e-commerce).
* The latest stable version is [3.11.4](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
8 changes: 6 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: JustinSainton
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.1
Tested up to: 4.6
Stable tag: 3.11.3
Tested up to: 4.7
Stable tag: 3.11.4

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.4 [2016-11-11] =

* Security Fix: Under specific conditions (Gold Cart enabled, using eWay as a payment processor, and using the yet-to-be-released 2.0 Theme Engine) - a SQL vulnerability has been patched.

= 3.11.3 [2016-5-23] =

* Fix: WordPress 4.4 introduced changes to the WPDB class that caused loosely typed data to fail upon insert, causing empty cart contents entries when taxes were applied and coupons not being created.
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.3
* Version: 3.11.4
* 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.3' );
define( 'WPSC_VERSION' , '3.11.4' );
}

if ( ! defined( 'WPSC_MINOR_VERSION' ) ) {
define( 'WPSC_MINOR_VERSION' , '9cadbff' );
define( 'WPSC_MINOR_VERSION' , '6fd2d64' );
}

if ( ! defined( 'WPSC_PRESENTABLE_VERSION' ) ) {
define( 'WPSC_PRESENTABLE_VERSION', '3.11.3' );
define( 'WPSC_PRESENTABLE_VERSION', '3.11.4' );
}

// 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 baa75b8

Please sign in to comment.