From 5ca7f28198aae014478322d192203a951dde3ebb Mon Sep 17 00:00:00 2001 From: Simon Gabriel Date: Thu, 31 Jan 2019 11:53:38 +0100 Subject: [PATCH] [bugfix] (PHPLIB-105) Updated changelog and version. --- CHANGELOG.md | 13 +++++++++++++ src/Heidelpay.php | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c071825..48f3e8ef 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ 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). +## [1.0.2.0][1.0.2.0] + +### Added +* Made status information available in transactions (isSuccess, isError, isPending). + +### Fixed +* Http-Request: Remove payload from DELETE call. +* DebugLog: Remove payload output from GET and DELETE calls. + +### Changed +* Several code style issues. + ## [1.0.1.0][1.0.1.0] ### Added @@ -89,3 +101,4 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a [1.0.0.0]: https://github.com/heidelpay/heidelpayPHP/compare/1.0.0-beta.2..1.0.0.0 [1.0.0.1]: https://github.com/heidelpay/heidelpayPHP/compare/1.0.0.0..1.0.0.1 [1.0.1.0]: https://github.com/heidelpay/heidelpayPHP/compare/1.0.0.1..1.0.1.0 +[1.0.2.0]: https://github.com/heidelpay/heidelpayPHP/compare/1.0.1.0..1.0.2.0 diff --git a/src/Heidelpay.php b/src/Heidelpay.php index 55ea9ee5..3edeaeba 100755 --- a/src/Heidelpay.php +++ b/src/Heidelpay.php @@ -50,7 +50,7 @@ class Heidelpay implements HeidelpayParentInterface const BASE_URL = 'https://api.heidelpay.com/'; const API_VERSION = 'v1'; const SDK_TYPE = 'HeidelpayPHP'; - const SDK_VERSION = '1.0.1.0'; + const SDK_VERSION = '1.0.2.0'; /** @var string $key */ private $key;