diff --git a/CHANGELOG.md b/CHANGELOG.md index 0720f3e2..a734bf0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 2.9.1 + +### Fixed + +* #282 - SMS Throttling response is now handled as milliseconds instead of seconds +* #282 - Fixed regex to not consume API rate limiting error and basically time out PHP scripts + # 2.9.0 ### Changed diff --git a/src/Client.php b/src/Client.php index 300f02ee..1552f118 100644 --- a/src/Client.php +++ b/src/Client.php @@ -105,7 +105,7 @@ class Client implements LoggerAwareInterface { use LoggerTrait; - public const VERSION = '2.9.0'; + public const VERSION = '2.9.1'; public const BASE_API = 'https://api.nexmo.com'; public const BASE_REST = 'https://rest.nexmo.com';