diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e352e0..70b65ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.9.1] - 2025-02-24 +### Fixed +- PLGMAG2V2-826: Fix uncleared orders not being able to be invoiced +- PLGMAG2V2-823: Fix Fooman surcharge rate calculation above 100% + +### Changed +- PLGMAG2V2-829: Enable Sofort and Dotpay payment methods + +### Removed +- DAVAMS-840: Remove gender requirement for in3 + ## [3.9.0] - 2025-01-09 ### Added - DAVAMS-817: Added the Bizum payment method diff --git a/Util/VersionUtil.php b/Util/VersionUtil.php index 6b6f4ea..a66fcb0 100644 --- a/Util/VersionUtil.php +++ b/Util/VersionUtil.php @@ -63,7 +63,7 @@ public function __construct( */ public function getPluginVersion(): string { - return '3.9.0'; + return '3.9.1'; } /** diff --git a/composer.json b/composer.json index 99dfc78..baa4a02 100755 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "multisafepay/magento2-core", "description": "MultiSafepay core module for Magento 2", - "version": "3.9.0", + "version": "3.9.1", "require": { "multisafepay/php-sdk": "^5.14", "nyholm/psr7": "^1.4",