diff --git a/CHANGELOG.md b/CHANGELOG.md index 516e94f..56dcd91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +### [v3.0.0 _(Apr 08, 2025)_](https://github.com/omise/omise-php/releases/tag/v3.0.0) + +- Resolve issue of keys passed to method not being used [#172]((https://github.com/omise/omise-php/pull/172)) +- Support API `2019-05-29` [#177]((https://github.com/omise/omise-php/pull/177)) +- Create Http interface for executing API request [#178]((https://github.com/omise/omise-php/pull/178)) + ### [v2.18.0 _(Jul 09, 2024)_](https://github.com/omise/omise-php/releases/tag/v2.18.0) - Fix the latest version link in README. ([#157](https://github.com/omise/omise-php/pull/167)) @@ -13,7 +19,7 @@ - Removed the predefined installment minimum value ([#151](https://github.com/omise/omise-php/pull/151)) - Bug fixed on `OmiseSearch::scope` public key and secret key override as null ([#149](https://github.com/omise/omise-php/pull/149)) - Sonarcloud integration for code coverage ([#148](https://github.com/omise/omise-php/pull/148)) - + ### [v2.16.0 _(August 25, 2022)_](https://github.com/omise/omise-php/releases/tag/v2.16.0) - Made compatible with PHP 5.6 to 8.1 ([#141](https://github.com/omise/omise-php/pull/144)) diff --git a/README.md b/README.md index 19ee8c0..0d67708 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ You can install the library via [Composer](https://getcomposer.org/). If you don ### Manually -If you are not using Composer, you can download [the latest version of Omise-PHP](https://github.com/omise/omise-php/archive/v2.18.0.zip). +If you are not using Composer, you can download [the latest version of Omise-PHP](https://github.com/omise/omise-php/archive/v3.0.0.zip). Then, follow the instructions to install **Omise-PHP** to the project. 1. Extract the library to your project. diff --git a/composer.json b/composer.json index 3763ff8..316e7c5 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "omise/omise-php", "description": "A PHP library designed specifically to connect with Omise API.", "type": "library", - "version": "v2.18.0", + "version": "v3.0.0", "keywords": [ "alipay payment", "credit card payment", diff --git a/lib/omise/res/OmiseApiResource.php b/lib/omise/res/OmiseApiResource.php index 6567e8b..3a3c05b 100644 --- a/lib/omise/res/OmiseApiResource.php +++ b/lib/omise/res/OmiseApiResource.php @@ -1,6 +1,6 @@