Skip to content

Commit 893c087

Browse files
committed
Version update
1 parent 8821a00 commit 893c087

8 files changed

+280
-268
lines changed

CHANGELOG.MD

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.4.1 - 2024-07-16
2+
* [Fix] #73 - Not send e-mail to administrator about a new order
3+
* [Fix] Showing error in empty cart (blocks) when installments are active
4+
15
# 2.4.0 - 2024-07-07
26
* [Add] PayU - BLIK via WooCommerce Blocks
37

changelog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
*** Changelog ***
2+
= 2.4.1 - 2024-07-16 =
3+
* [Fix] #73 - Not send e-mail to administrator about a new order
4+
* [Fix] Showing error in empty cart (blocks) when installments are active
5+
26
= 2.4.0 - 2024-07-07 =
37
* [Add] PayU - BLIK via WooCommerce Blocks
48

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "payu/payment_gateway",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "PayU GPO Payment for WooCommerce",
55
"type": "woocommerce-plugin",
66
"license": "Apache License 2.0",

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+260-260
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "woo-payu-payment-gateway",
3-
"version": "1.0.0",
3+
"version": "2.4.1",
44
"description": "PayU Payment Gateway for WooCommerce",
55
"scripts": {
66
"start": "wp-scripts start",
@@ -12,6 +12,6 @@
1212
"license": "Apache-2.0",
1313
"devDependencies": {
1414
"@woocommerce/dependency-extraction-webpack-plugin": "^3.0.1",
15-
"@wordpress/scripts": "^28.2.0"
15+
"@wordpress/scripts": "^28.3.0"
1616
}
1717
}

readme.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: payusa
33
Tags: PayU, payment, payment gateway, płatności, credit card
44
Requires at least: 5.0
55
Tested up to: 6.5.5
6-
Stable tag: 2.4.0
6+
Stable tag: 2.4.1
77
Requires PHP: 7.4
88
License: Apache License 2.0
99

@@ -51,6 +51,10 @@ Yes, it does.
5151
* For presenting minimal installment amount we used [Widget Installments](https://developers.payu.com/en/installments.html#installments_best_practices_mini) and plugin loads the script from the static.payu.com domain.
5252

5353
== Changelog ==
54+
= 2.4.1 - 2024-07-16 =
55+
* [Fix] #73 - Not send e-mail to administrator about a new order
56+
* [Fix] Showing error in empty cart (blocks) when installments are active
57+
5458
= 2.4.0 - 2024-07-07 =
5559
* [Add] PayU - BLIK via WooCommerce Blocks
5660

woocommerce-gateway-payu.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
* Plugin URI: https://github.com/PayU/woo-payu-payment-gateway
66
* GitHub Plugin URI: https://github.com/PayU-EMEA/woo-payu-payment-gateway
77
* Description: PayU fast online payments for WooCommerce. Banks, BLIK, credit or debit cards, Installments, Apple Pay, Google Pay.
8-
* Version: 2.4.0
8+
* Version: 2.4.1
99
* Author: PayU SA
1010
* Author URI: http://www.payu.com
1111
* License: Apache License 2.0
1212
* Text Domain: woo-payu-payment-gateway
1313
* Domain Path: /lang
1414
* WC requires at least: 4.0
15-
* WC tested up to: 9.0.2
15+
* WC tested up to: 9.1.2
1616
*/
1717

1818
use Automattic\WooCommerce\Blocks\Payments\PaymentMethodRegistry;
@@ -34,7 +34,7 @@
3434

3535
require __DIR__ . '/vendor/autoload.php';
3636

37-
define( 'PAYU_PLUGIN_VERSION', '2.4.0' );
37+
define( 'PAYU_PLUGIN_VERSION', '2.4.1' );
3838
define( 'PAYU_PLUGIN_FILE', __FILE__ );
3939
define( 'PAYU_PLUGIN_STATUS_WAITING', 'payu-waiting' );
4040

0 commit comments

Comments
 (0)