Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Aug 17, 2021
1 parent 8e01dc0 commit 7f9cd2a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased][unreleased]
-

## [2.0.1] - 2021-08-17
- No longer require PHP `intl` extensie.
- Simplified exception handling.

## [2.0.0] - 2021-08-05
- Updated to `pronamic/wp-pay-core` version `3.0.0`.
Expand Down Expand Up @@ -82,7 +87,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## 1.0.0 - 2019-03-28
- First release.

[unreleased]: https://github.com/wp-pay-gateways/adyen/compare/2.0.0...HEAD
[unreleased]: https://github.com/wp-pay-gateways/adyen/compare/2.0.1...HEAD
[2.0.1]: https://github.com/wp-pay-gateways/adyen/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/wp-pay-gateways/adyen/compare/1.3.2...2.0.0
[1.3.2]: https://github.com/wp-pay-gateways/adyen/compare/1.3.1...1.3.2
[1.3.1]: https://github.com/wp-pay-gateways/adyen/compare/1.3.0...1.3.1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adyen",
"version": "2.0.0",
"version": "2.0.1",
"description": "Adyen driver for the WordPress payment processing library.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion pronamic-pay-adyen.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin URI: https://www.pronamic.eu/plugins/pronamic-pay-adyen/
* Description: Extend the Pronamic Pay plugin with the Adyen gateway to receive payments with Adyen through a variety of WordPress plugins.
*
* Version: 2.0.0
* Version: 2.0.1
* Requires at least: 4.7
*
* Author: Pronamic
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Tags: pronamic, pay, adyen, add-on
Requires at least: 4.7
Tested up to: 5.1
Requires PHP: 5.3
Stable tag: 2.0.0
Stable tag: 2.0.1

Extend the Pronamic Pay plugin with the Adyen gateway to receive payments with Adyen through a variety of WordPress plugins.
2 changes: 1 addition & 1 deletion src/AbstractGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @link https://github.com/adyenpayments/php/blob/master/generatepaymentform.php
*
* @author Remco Tolsma
* @version 1.0.5
* @version 2.0.1
* @since 1.0.0
*/
abstract class AbstractGateway extends Core_Gateway {
Expand Down
2 changes: 1 addition & 1 deletion src/Integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* Integration
*
* @author Remco Tolsma
* @version 1.1.2
* @version 2.0.1
* @since 1.0.0
*/
class Integration extends AbstractGatewayIntegration {
Expand Down
3 changes: 2 additions & 1 deletion src/Util.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Util
*
* @author Remco Tolsma
* @version 1.0.5
* @version 2.0.1
* @since 1.0.0
*/
class Util {
Expand Down Expand Up @@ -61,6 +61,7 @@ public static function get_payment_locale( Payment $payment ) {
/**
* Get country code.
*
* @since 2.0.1
* @param Payment $payment Payment.
* @return string|null
*/
Expand Down
3 changes: 2 additions & 1 deletion src/WebSdkGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @link https://github.com/adyenpayments/php/blob/master/generatepaymentform.php
*
* @author Remco Tolsma
* @version 1.0.5
* @version 2.0.1
* @since 1.0.0
*/
class WebSdkGateway extends AbstractGateway {
Expand Down Expand Up @@ -78,6 +78,7 @@ public function get_supported_payment_methods() {
*
* @param Payment $payment Payment.
* @return void
* @throws \Exception Throws an exception when the shopper country cannot be determined.
*/
public function start( Payment $payment ) {
// Amount.
Expand Down

0 comments on commit 7f9cd2a

Please sign in to comment.