Version Description
- Fix - Previous upload of files didn't take. Retry.
Download this release
Release Info
Developer | royho |
Plugin | WooCommerce Stripe Payment Gateway |
Version | 3.0.5 |
Comparing to | |
See all releases |
Code changes from version 3.0.4 to 3.0.5
- readme.txt +6 -3
- woocommerce-gateway-stripe.php +2 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic, woothemes, mikejolley, akeda, royho, slash1andy, woost
|
|
3 |
Tags: credit card, stripe, woocommerce
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 4.5
|
6 |
-
Stable tag: 3.0.
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -87,6 +87,9 @@ If you get stuck, you can ask for help in the Plugin Forum.
|
|
87 |
|
88 |
== Changelog ==
|
89 |
|
|
|
|
|
|
|
90 |
= 3.0.4 =
|
91 |
* Fix - Missing min files.
|
92 |
|
@@ -116,5 +119,5 @@ If you get stuck, you can ask for help in the Plugin Forum.
|
|
116 |
|
117 |
== Upgrade Notice ==
|
118 |
|
119 |
-
= 3.0.
|
120 |
-
* Fix -
|
3 |
Tags: credit card, stripe, woocommerce
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 4.5
|
6 |
+
Stable tag: 3.0.5
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
+
= 3.0.5 =
|
91 |
+
* Fix - Previous upload of files didn't take. Retry.
|
92 |
+
|
93 |
= 3.0.4 =
|
94 |
* Fix - Missing min files.
|
95 |
|
119 |
|
120 |
== Upgrade Notice ==
|
121 |
|
122 |
+
= 3.0.5 =
|
123 |
+
* Fix - Previous upload of files didn't take. Retry.
|
woocommerce-gateway-stripe.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Take credit card payments on your store using Stripe.
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://woocommerce.com/
|
8 |
-
* Version: 3.0.
|
9 |
* Text Domain: woocommerce-gateway-stripe
|
10 |
* Domain Path: /languages
|
11 |
*
|
@@ -32,7 +32,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
32 |
/**
|
33 |
* Required minimums and constants
|
34 |
*/
|
35 |
-
define( 'WC_STRIPE_VERSION', '3.0.
|
36 |
define( 'WC_STRIPE_MIN_PHP_VER', '5.3.0' );
|
37 |
define( 'WC_STRIPE_MIN_WC_VER', '2.5.0' );
|
38 |
define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
|
5 |
* Description: Take credit card payments on your store using Stripe.
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://woocommerce.com/
|
8 |
+
* Version: 3.0.5
|
9 |
* Text Domain: woocommerce-gateway-stripe
|
10 |
* Domain Path: /languages
|
11 |
*
|
32 |
/**
|
33 |
* Required minimums and constants
|
34 |
*/
|
35 |
+
define( 'WC_STRIPE_VERSION', '3.0.5' );
|
36 |
define( 'WC_STRIPE_MIN_PHP_VER', '5.3.0' );
|
37 |
define( 'WC_STRIPE_MIN_WC_VER', '2.5.0' );
|
38 |
define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
|