diff --git a/CHANGELOG.md b/CHANGELOG.md index ba566f4a..d1db3ab2 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [3.13.0](https://github.com/unzerdev/php-sdk/compare/3.12.0..3.13.0) + +### Changed + +* Ensure type hints of nullable function parameters are explicitly defined as such to address deprecation warnings. +* Change paypage v2 test domain ending from ".io" to ".com". + ## [3.12.0](https://github.com/unzerdev/php-sdk/compare/3.11.0..3.12.0) ### Added diff --git a/src/Unzer.php b/src/Unzer.php index b86d9fb8..25493bcb 100644 --- a/src/Unzer.php +++ b/src/Unzer.php @@ -58,7 +58,7 @@ class Unzer implements public const BASE_URL = 'api.unzer.com'; public const API_VERSION = ApiVersions::V1; public const SDK_TYPE = 'UnzerPHP'; - public const SDK_VERSION = '3.12.0'; + public const SDK_VERSION = '3.13.0'; /** @var string $key */ private $key;