diff --git a/CHANGELOG.md b/CHANGELOG.md index 7699dc8a..c8e730ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 2.8.1 + +### Fixed + +* #278 - Fixed issue retrieving Conversations and Users clients where the service locator didn't know what to do + +### Changed + +* #283 - Moved auth logic to individual handlers, to better prepare for a fix where Containers do not allow Signature and Token auth +# 2.8.0 + +### Added + +* #272 - Added support for PSR-3 compatible logging solutions and a new debug feature to log requests/responses +* #274 - Added support for the detail field on some new Voice API incoming events (https://developer.nexmo.com/voice/voice-api/webhook-reference#event-webhook) +* #273 - Added new content-id and entity-id fields to support regional SMS requirements, and a shortcut for enabling DLT on Indian-based SMS + # 2.7.1 ### Changed diff --git a/src/Client.php b/src/Client.php index 6a78a821..33df73f9 100644 --- a/src/Client.php +++ b/src/Client.php @@ -105,7 +105,7 @@ class Client implements LoggerAwareInterface { use LoggerTrait; - public const VERSION = '2.5.0'; + public const VERSION = '2.8.1'; public const BASE_API = 'https://api.nexmo.com'; public const BASE_REST = 'https://rest.nexmo.com';