From 3852949948e4370bb25e83b661a65229d1b4a1b1 Mon Sep 17 00:00:00 2001 From: lsolesen Date: Tue, 19 Apr 2016 07:10:11 +0000 Subject: [PATCH] Added information about 1.0.0 --- CHANGELOG.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30bb9a9..a6d8615 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ -## CHANGELOG +# CHANGELOG + +## 1.0.0 - 2016-04-19 + +- First stable release of QuickPay PHP Client for QuickPay api v10. +- This release follows PSR2 standards and is not comptible with the previous version. +- All methods are now in **camelCase** format (PSR1.Methods.CamelCapsMethodName.NotCamelCaps). +- In QuickPay\API\Response `as_raw` changed to `asRaw`, `as_object` changed to `asObject`, `as_array` changed to `asArray`, `http_status` changed to `httpStatus` and finally `is_success` changed to `isSuccess`. +- Also QuickPay\QuickPay does not `require_once` for needed files anymore, so the file does **not have any side effects** (PSR1.Files.SideEffects.FoundWithSymbols). +- You should use an autoloader, e.g. by utilizing `composer` for the files to be included correctly or simply `require_once` yourself. +- See the [full list of changes](https://github.com/QuickPay/quickpay-php-client/commit/d59ca916843a4bd72b29b2b5fc1bfe918bfbc637) ## 0.1.0 - 2016-04-14