From 12dea755fdc26861bdab26f092ab5b6e9bf4612d Mon Sep 17 00:00:00 2001 From: Maciej Lew Date: Wed, 23 Mar 2022 10:44:51 +0100 Subject: [PATCH] Releases version 3.0.5 - resolves #120 --- CHANGELOG.md | 4 ++++ src/SmsapiClient.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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;