Skip to content

Commit 1690557

Browse files
committed
Latest cafe changes 5.0.38.p
1 parent a8bf110 commit 1690557

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Releases
88

9-
### [5.0.37]
9+
### [5.0.38]
10+
11+
#### Added
12+
- [Add support for Stripe partner fees (#1769)](https://github.com/eventespresso/cafe/pull/1769)
13+
14+
1015

1116

17+
18+
### [5.0.37]
19+
1220
#### Fixed
1321
- [Hide Final PM Deprecation Notice If Nothing Deactivated (#1761)](https://github.com/eventespresso/cafe/pull/1761)
1422
- [Fix Version Parsing in PHP 7.4 (#1762)](https://github.com/eventespresso/cafe/pull/1762)
@@ -20,7 +28,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2028

2129

2230

23-
2431
### [5.0.36]
2532

2633

core/services/payments/PaymentProcessorFees.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ class PaymentProcessorFees
5050
LicenseData::LICENSE_EXPIRED => [
5151
PaymentProcessorFees::GATEWAY_PAYPAL => 3.00,
5252
PaymentProcessorFees::GATEWAY_SQUARE => 2.50,
53-
PaymentProcessorFees::GATEWAY_STRIPE => 2.50,
53+
PaymentProcessorFees::GATEWAY_STRIPE => 3.00,
5454
],
5555
LicenseData::LICENSE_DECAF => [
5656
PaymentProcessorFees::GATEWAY_PAYPAL => 3.00,
5757
PaymentProcessorFees::GATEWAY_SQUARE => 2.50,
58-
PaymentProcessorFees::GATEWAY_STRIPE => 2.50,
58+
PaymentProcessorFees::GATEWAY_STRIPE => 3.00,
5959
],
6060
];
6161

espresso.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Event Espresso
44
Plugin URI: https://eventespresso.com/pricing/?ee_ver=ee4&utm_source=ee4_plugin_admin&utm_medium=link&utm_campaign=wordpress_plugins_page&utm_content=support_link
55
Description: Manage events, sell tickets, and receive payments from your WordPress website. Reduce event administration time, cut-out ticketing fees, and own your customer data. | <a href="https://eventespresso.com/add-ons/?utm_source=plugin_activation_screen&utm_medium=link&utm_campaign=plugin_description">Extensions</a> | <a href="https://eventespresso.com/pricing/?utm_source=plugin_activation_screen&utm_medium=link&utm_campaign=plugin_description">Sales</a> | <a href="admin.php?page=espresso_support">Support</a>
6-
Version: 5.0.38.rc.000
6+
Version: 5.0.38.rc.001
77
Author: Event Espresso
88
Author URI: https://eventespresso.com/?ee_ver=ee4&utm_source=ee4_plugin_admin&utm_medium=link&utm_campaign=wordpress_plugins_page&utm_content=support_link
99
License: GPLv3
@@ -104,7 +104,7 @@ function espresso_minimum_php_version_error()
104104
*/
105105
function espresso_version(): string
106106
{
107-
return apply_filters('FHEE__espresso__espresso_version', '5.0.38.rc.000');
107+
return apply_filters('FHEE__espresso__espresso_version', '5.0.38.rc.001');
108108
}
109109

110110
/**

0 commit comments

Comments
 (0)