diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d8b9ae..c57859e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ 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). +## [3.0.5] - 2022-03-23 +### Fixed +- HTTP headers parsing, `HttpClient` issue + ## [3.0.4] - 2022-01-17 ### Added - `psr/log` v2, v3 support diff --git a/src/SmsapiClient.php b/src/SmsapiClient.php index 113101c..7561a9e 100644 --- a/src/SmsapiClient.php +++ b/src/SmsapiClient.php @@ -12,7 +12,7 @@ */ interface SmsapiClient extends LoggerAwareInterface { - const VERSION = '3.0.4'; + const VERSION = '3.0.5'; public function smsapiPlService(string $apiToken): SmsapiPlService;