Skip to content

Commit 1cd1382

Browse files
author
Paul Dechov
committed
Merge branch 'trunk' into develop
2 parents 448f5e9 + 4516575 commit 1cd1382

File tree

5 files changed

+29
-15
lines changed

5 files changed

+29
-15
lines changed

changelog.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
*** Changelog ***
22

3-
= 6.3.0 - 2022-xx-xx =
4-
* Tweak - Remove html from translatable strings
3+
= 6.3.0 - 2022-03-10 =
4+
* Tweak - Remove html from translatable strings.
55
* Tweak - Revert the deprecation of the 'wc_stripe_hide_payment_request_on_product_page', 'wc_stripe_show_payment_request_on_checkout', and 'wc_stripe_show_payment_request_on_cart' filters.
6+
* Tweak - Address minor styling issues in settings.
67

78
= 6.2.0 - 2022-02-17 =
89
* Add - Add onboarding payment gateway setup methods.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "woocommerce-gateway-stripe",
33
"title": "WooCommerce Gateway Stripe",
4-
"version": "6.2.0",
4+
"version": "6.3.0",
55
"license": "GPL-3.0",
66
"homepage": "http://wordpress.org/plugins/woocommerce-gateway-stripe/",
77
"repository": {
@@ -116,18 +116,18 @@
116116
"i18n:merge": "php bin/update-pot-file-references.php languages/woocommerce-gateway-stripe.pot",
117117
"start": "npm run start:webpack",
118118
"start:webpack": "rimraf build/* && wp-scripts start",
119-
"preuglify": "rm -f $npm_package_assets_js_min",
120-
"uglify": "for f in $npm_package_assets_js_js; do file=${f%.js}; node_modules/.bin/uglifyjs $f -c -m > $file.min.js; done",
119+
"preuglify": "rm -f $npm_package_config_assets_js_min",
120+
"uglify": "for f in $npm_package_config_assets_js_js; do file=${f%.js}; node_modules/.bin/uglifyjs $f -c -m > $file.min.js; done",
121121
"up": "docker-compose up --build --force-recreate -d && ./bin/docker-setup.sh",
122122
"down": "docker-compose down",
123123
"xdebug:start": "docker-compose exec wordpress sh -c 'sed -i \"/xdebug.mode=off/c\\xdebug.mode=debug\" /usr/local/etc/php/php.ini && /etc/init.d/apache2 reload'",
124124
"xdebug:stop": "docker-compose exec wordpress sh -c 'sed -i \"/xdebug.mode=debug/c\\xdebug.mode=off\" /usr/local/etc/php/php.ini && /etc/init.d/apache2 reload'",
125125
"wp": "docker run -it --env-file default.env --rm --user xfs --volumes-from woocommerce_stripe_wordpress --network container:woocommerce_stripe_wordpress wordpress:cli",
126126
"listen": "stripe listen --forward-to 'http://localhost:8082/?wc-api=wc_stripe'",
127-
"presass": "rm -f $npm_package_assets_styles_css",
128-
"sass": "node_modules/.bin/node-sass $npm_package_assets_styles_cssfolder --output $npm_package_assets_styles_cssfolder --output-style compressed",
129-
"watchsass": "node_modules/.bin/node-sass $npm_package_assets_styles_sass --output $npm_package_assets_styles_cssfolder --output-style compressed --watch",
130-
"postsass": "for f in $npm_package_assets_styles_css; do file=${f%.css}; node_modules/.bin/cleancss -o $file.css $f; done",
127+
"presass": "rm -f $npm_package_config_assets_styles_css",
128+
"sass": "node_modules/.bin/node-sass $npm_package_config_assets_styles_cssfolder --output $npm_package_config_assets_styles_cssfolder --output-style compressed",
129+
"watchsass": "node_modules/.bin/node-sass $npm_package_config_assets_styles_sass --output $npm_package_config_assets_styles_cssfolder --output-style compressed --watch",
130+
"postsass": "for f in $npm_package_config_assets_styles_css; do file=${f%.css}; node_modules/.bin/cleancss -o $file.css $f; done",
131131
"test": "cross-env NODE_CONFIG_DIR='./tests/e2e/config' BABEL_ENV=commonjs mocha \"tests/e2e\" --require babel-register --recursive",
132132
"test:grep": "cross-env NODE_CONFIG_DIR='./tests/e2e/config' BABEL_ENV=commonjs mocha \"tests/e2e\" --require babel-register --grep ",
133133
"test:single": "cross-env NODE_CONFIG_DIR='./tests/e2e/config' BABEL_ENV=commonjs mocha --require babel-register",
@@ -159,6 +159,17 @@
159159
"includes",
160160
"templates",
161161
"woocommerce-gateway-stripe.php"
162-
]
162+
],
163+
"assets": {
164+
"js": {
165+
"min": "assets/js/*.min.js",
166+
"js": "assets/js/*.js"
167+
},
168+
"styles": {
169+
"css": "assets/css/*.css",
170+
"sass": "assets/css/*.scss",
171+
"cssfolder": "assets/css/"
172+
}
173+
}
163174
}
164175
}

readme.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: credit card, stripe, apple pay, payment request, google pay, sepa, sofort,
44
Requires at least: 5.6
55
Tested up to: 5.9
66
Requires PHP: 7.0
7-
Stable tag: 6.2.0
7+
Stable tag: 6.3.0
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010
Attributions: thorsten-stripe
@@ -128,7 +128,9 @@ If you get stuck, you can ask for help in the Plugin Forum.
128128

129129
== Changelog ==
130130

131-
= 6.3.0 - 2022-xx-xx =
131+
= 6.3.0 - 2022-03-10 =
132+
* Tweak - Remove html from translatable strings.
132133
* Tweak - Revert the deprecation of the 'wc_stripe_hide_payment_request_on_product_page', 'wc_stripe_show_payment_request_on_checkout', and 'wc_stripe_show_payment_request_on_cart' filters.
134+
* Tweak - Address minor styling issues in settings.
133135

134136
[See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce-gateway-stripe/trunk/changelog.txt).

woocommerce-gateway-stripe.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Take credit card payments on your store using Stripe.
66
* Author: WooCommerce
77
* Author URI: https://woocommerce.com/
8-
* Version: 6.2.0
8+
* Version: 6.3.0
99
* Requires at least: 5.6
1010
* Tested up to: 5.9
1111
* WC requires at least: 5.7
@@ -21,7 +21,7 @@
2121
/**
2222
* Required minimums and constants
2323
*/
24-
define( 'WC_STRIPE_VERSION', '6.2.0' ); // WRCS: DEFINED_VERSION.
24+
define( 'WC_STRIPE_VERSION', '6.3.0' ); // WRCS: DEFINED_VERSION.
2525
define( 'WC_STRIPE_MIN_PHP_VER', '7.0.0' );
2626
define( 'WC_STRIPE_MIN_WC_VER', '5.7' );
2727
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '5.8' );

0 commit comments

Comments
 (0)