diff --git a/package.json b/package.json index 6e0b19169f..c40b1f4572 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "wp-e-commerce", "title": "WP eCommerce", "description": "The most popular independent eCommerce platform for WordPress", - "version": "3.13.1", + "version": "3.14.0", "license": "GPLv2", "author": { "name": "WP-e-Commerce", diff --git a/readme.md b/readme.md index 79a1387d12..c1e70335ac 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.13.1](http://wordpress.org/extend/plugins/wp-e-commerce). +* The latest stable version is [3.14.0](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 614793b909..17b4e7f248 100755 --- a/readme.txt +++ b/readme.txt @@ -2,9 +2,9 @@ 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.5 -Tested up to: 4.9 -Stable tag: 3.13.1 +Requires at least: 4.7 +Tested up to: 5.0 +Stable tag: 3.14.0 WP eCommerce is a free, powerful plugin that empowers you to sell anything online, quickly and easily. diff --git a/wp-shopping-cart.php b/wp-shopping-cart.php index 09d48860bc..fe297430f1 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.13.1 + * Version: 3.14.0 * 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 d92b35afd5..ab141c4093 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.13.1' ); + define( 'WPSC_VERSION' , '3.14.0' ); } if ( ! defined( 'WPSC_MINOR_VERSION' ) ) { - define( 'WPSC_MINOR_VERSION' , '361d748' ); + define( 'WPSC_MINOR_VERSION' , '855a4af6' ); } if ( ! defined( 'WPSC_PRESENTABLE_VERSION' ) ) { - define( 'WPSC_PRESENTABLE_VERSION', '3.13.1' ); + define( 'WPSC_PRESENTABLE_VERSION', '3.14.0' ); } // Define a salt to use when we hash, WPSC_SALT may be defined for us in our config file, so check first