Skip to content

Commit 3a35bdf

Browse files
Release 3.3.2-beta
1 parent c88a486 commit 3a35bdf

14 files changed

+53
-24
lines changed

.github/workflows/soft-release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Soft Release Plugin
2+
on:
3+
push:
4+
tags:
5+
- '[0-9]+.[0-9]+.[0-9]+-beta*'
6+
- '[0-9]+.[0-9]+.[0-9]+-rc*'
7+
8+
jobs:
9+
beta_release:
10+
name: Soft Release
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v2
15+
- name: Pre-Release Notice
16+
run: |
17+
echo "Pre-release tag detected. Skipping full release steps. Only pre-release actions will be performed."

.github/workflows/woo-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: Release Plugin
22
on:
33
push:
44
tags:
5-
- '*'
5+
- '[0-9]+.[0-9]+.[0-9]+'
66

77
jobs:
88
tag:
9-
name: New release
9+
name: Full Release
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This repository contains the PostFinance Checkout plugin that enables WooCommerc
1616

1717
## Documentation
1818

19-
* [Documentation](https://plugin-documentation.postfinance-checkout.ch/pfpayments/woocommerce/3.3.1/docs/en/documentation.html)
19+
* [Documentation](https://plugin-documentation.postfinance-checkout.ch/pfpayments/woocommerce/3.3.2-beta/docs/en/documentation.html)
2020

2121
## Support
2222

@@ -33,7 +33,7 @@ ____________________________________________________________________________
3333

3434
## License
3535

36-
Please see the [license file](https://github.com/pfpayments/woocommerce/blob/3.3.1/LICENSE) for more information.
36+
Please see the [license file](https://github.com/pfpayments/woocommerce/blob/3.3.2-beta/LICENSE) for more information.
3737

3838
## Privacy Policy
3939

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('@woocommerce/blocks-registry', 'react', 'wp-polyfill'), 'version' => '7d280224628cd5ce269b');
1+
<?php return array('dependencies' => array('@woocommerce/blocks-registry', 'react', 'wp-polyfill'), 'version' => '8de5d1b01ac08d3a2491');

assets/js/frontend/blocks/build/index.js

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

changelog.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -859,3 +859,11 @@ Please ensure that in woocommerce->settings->tax, the "Round tax at subtotal lev
859859
- [Tested Against] Woocommerce 9.3.2
860860
- [Tested Against] PHP SDK 4.6.0
861861

862+
= 3.3.2-beta - December 3 2024 =
863+
- [Improvement] Improve payment method loading speed at checkout
864+
- [Bugfix] Fix for missing transaction box in order
865+
- [Tested Against] PHP 8.2
866+
- [Tested Against] Wordpress 6.7
867+
- [Tested Against] Woocommerce 9.4.2
868+
- [Tested Against] PHP SDK 4.6.0
869+

docs/en/documentation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h2>Documentation</h2> </div>
2323
</a>
2424
</li>
2525
<li>
26-
<a href="https://github.com/pfpayments/woocommerce/releases/tag/3.3.1/">
26+
<a href="https://github.com/pfpayments/woocommerce/releases/tag/3.3.2-beta/">
2727
Source
2828
</a>
2929
</li>

docs/en/resource/method.png

-67.8 KB
Binary file not shown.

docs/en/resource/settings.png

-88.9 KB
Binary file not shown.

includes/admin/class-wc-postfinancecheckout-admin-settings-page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public function get_settings() {
184184
$settings = array(
185185
array(
186186
'links' => array(
187-
'https://plugin-documentation.postfinance-checkout.ch/pfpayments/woocommerce/3.3.1/docs/en/documentation.html' => esc_html__( 'Documentation', 'woo-postfinancecheckout' ),
187+
'https://plugin-documentation.postfinance-checkout.ch/pfpayments/woocommerce/3.3.2-beta/docs/en/documentation.html' => esc_html__( 'Documentation', 'woo-postfinancecheckout' ),
188188
'https://checkout.postfinance.ch/en-ch/user/signup' => esc_html__( 'Sign Up', 'woo-postfinancecheckout' ),
189189
),
190190
'type' => 'postfinancecheckout_links',

0 commit comments

Comments
 (0)