Skip to content

Commit eecdafe

Browse files
committed
Version bump
1 parent 361d748 commit eecdafe

6 files changed

Lines changed: 22 additions & 15 deletions

File tree

.travis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ php:
1212
env:
1313
- WP_VERSION=latest WP_MULTISITE=0
1414
- WP_VERSION=latest WP_MULTISITE=1
15-
- WP_VERSION=4.3 WP_MULTISITE=0
16-
- WP_VERSION=4.3 WP_MULTISITE=1
17-
- WP_VERSION=4.2 WP_MULTISITE=0
18-
- WP_VERSION=4.2 WP_MULTISITE=1
19-
- WP_VERSION=4.1 WP_MULTISITE=0
20-
- WP_VERSION=4.1 WP_MULTISITE=1
15+
- WP_VERSION=4.8 WP_MULTISITE=0
16+
- WP_VERSION=4.8 WP_MULTISITE=1
17+
- WP_VERSION=4.7 WP_MULTISITE=0
18+
- WP_VERSION=4.7 WP_MULTISITE=1
19+
- WP_VERSION=4.6 WP_MULTISITE=0
20+
- WP_VERSION=4.6 WP_MULTISITE=1
2121

2222
before_script:
2323
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
@@ -26,4 +26,4 @@ script: phpunit --coverage-clover=coverage.clover
2626

2727
after_script:
2828
- wget https://scrutinizer-ci.com/ocular.phar
29-
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
29+
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "wp-e-commerce",
33
"title": "WP eCommerce",
44
"description": "The most popular independent eCommerce platform for WordPress",
5-
"version": "3.12.4",
5+
"version": "3.13.0",
66
"license": "GPLv2",
77
"author": {
88
"name": "WP-e-Commerce",

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If you're looking for general user support, please submit your support request o
1717
Development status
1818
-------------------------
1919

20-
* The latest stable version is [3.12.4](http://wordpress.org/extend/plugins/wp-e-commerce).
20+
* The latest stable version is [3.13.0](http://wordpress.org/extend/plugins/wp-e-commerce).
2121
* Active development version: 4.0-dev (branch [master](https://github.com/wp-e-commerce/WP-e-Commerce))
2222
* [Roadmap for 4.0](https://github.com/wp-e-commerce/wp-e-commerce/wiki/Roadmap)
2323
* [4.0 tickets](https://github.com/wp-e-commerce/WP-e-Commerce/milestones/4.0)

readme.txt

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: JustinSainton
33
Donate link: https://wpecommerce.org
44
Tags: e-commerce, digital downloads, wp-e-commerce, shop, cart, paypal, authorize, stock control, ecommerce, shipping, tax
55
Requires at least: 4.5
6-
Tested up to: 4.8.2
7-
Stable tag: 3.12.4
6+
Tested up to: 4.9
7+
Stable tag: 3.13.0
88

99
WP eCommerce is a free, powerful plugin that empowers you to sell anything online, quickly and easily.
1010

@@ -36,6 +36,13 @@ After upgrading from earlier versions look for link "Update Store". This will up
3636

3737
== Changelog ==
3838

39+
= 3.13.0 [2017-10-25] =
40+
41+
* New: Now including PayPal's Braintree payment gateway by default.
42+
* Fix: Various PHP notices related to custom taxonomies have been resolved.
43+
* Fix: Edge cases where shipping methods could be disabled, caused by poorly written Shipwire code, have been resolved.
44+
* Fix: Custom instructions in 3.0 Manual Gateway are now included in the receipt page and emails.
45+
3946
= 3.12.4 [2017-9-23] =
4047

4148
* Fix: Disable Theme Engine V2 by default. (Not yet released)

wp-shopping-cart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WP eCommerce
44
* Plugin URI: http://wpecommerce.org/
55
* 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>
6-
* Version: 3.12.4
6+
* Version: 3.13.0
77
* Author: WP eCommerce
88
* Author URI: http://wpecommerce.org/
99
* Text Domain: wp-e-commerce

wpsc-core/wpsc-constants.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ function wpsc_core_constants() {
5555

5656
// Define Plugin version
5757
if ( ! defined( 'WPSC_VERSION' ) ) {
58-
define( 'WPSC_VERSION' , '3.12.4' );
58+
define( 'WPSC_VERSION' , '3.13.0' );
5959
}
6060

6161
if ( ! defined( 'WPSC_MINOR_VERSION' ) ) {
62-
define( 'WPSC_MINOR_VERSION' , 'fb03617' );
62+
define( 'WPSC_MINOR_VERSION' , '361d748' );
6363
}
6464

6565
if ( ! defined( 'WPSC_PRESENTABLE_VERSION' ) ) {
66-
define( 'WPSC_PRESENTABLE_VERSION', '3.12.4' );
66+
define( 'WPSC_PRESENTABLE_VERSION', '3.13.0' );
6767
}
6868

6969
// Define a salt to use when we hash, WPSC_SALT may be defined for us in our config file, so check first

0 commit comments

Comments
 (0)