From 2c00de5e870c2d7777f958a7793f3d8b888eee50 Mon Sep 17 00:00:00 2001 From: guzzilar Date: Wed, 21 Mar 2018 16:31:07 +0700 Subject: [PATCH] Bump release number to v2.9.1. Update CHANGELOG. --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- lib/omise/res/OmiseApiResource.php | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78598709..e29dc77b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG +### [v2.9.1 _(March 21, 2018)_](https://github.com/omise/omise-php/releases/tag/v2.9.1) + +#### 🚀 Enhancements + +- Be able to limit items that will be shown at the Search Object. (PR [#75](https://github.com/omise/omise-php/pull/75)) + +#### 👾 Bug Fixes + +- Fix PHP v7.2 raise a warning message when execute OmiseApiResource::execute() with non-array assigned at the first argument. (PR [#71](https://github.com/omise/omise-php/pull/71), thanks @forfunza) + ### [v2.9.0 _(November 6, 2017)_](https://github.com/omise/omise-php/releases/tag/v2.9.0) #### ✨ Highlights diff --git a/README.md b/README.md index 09884189..1dd5c82c 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ You can install the library via [Composer](https://getcomposer.org/). If you don ### Manually -If you're not using Composer, you can also download [the latest version of Omise-PHP](https://github.com/omise/omise-php/archive/v2.9.0.zip). +If you're not using Composer, you can also download [the latest version of Omise-PHP](https://github.com/omise/omise-php/archive/v2.9.1.zip). Then, follows the instruction below to install **Omise-PHP** to the project. 1. Extract the library to your project. diff --git a/lib/omise/res/OmiseApiResource.php b/lib/omise/res/OmiseApiResource.php index f55c888a..3373447e 100644 --- a/lib/omise/res/OmiseApiResource.php +++ b/lib/omise/res/OmiseApiResource.php @@ -3,7 +3,7 @@ require_once dirname(__FILE__).'/obj/OmiseObject.php'; require_once dirname(__FILE__).'/../exception/OmiseExceptions.php'; -define('OMISE_PHP_LIB_VERSION', '2.9.0'); +define('OMISE_PHP_LIB_VERSION', '2.9.1'); define('OMISE_API_URL', 'https://api.omise.co/'); define('OMISE_VAULT_URL', 'https://vault.omise.co/');