diff --git a/CHANGELOG.md b/CHANGELOG.md index 9302b68..98017dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ backwards-incompatible changes that will affect existing usage. +## 9.12.0 - 2022-12-07 + +- Add automatic gzip decoding of response ([#744](https://github.com/php-curl-class/php-curl-class/pull/744)) + ## 9.11.1 - 2022-12-06 - change: remove unused namespace import ([#743](https://github.com/php-curl-class/php-curl-class/pull/743)) diff --git a/src/Curl/Curl.php b/src/Curl/Curl.php index aa3d62a..88bc8cc 100644 --- a/src/Curl/Curl.php +++ b/src/Curl/Curl.php @@ -7,7 +7,7 @@ use Curl\Url; class Curl { - const VERSION = '9.11.1'; + const VERSION = '9.12.0'; const DEFAULT_TIMEOUT = 30; public $curl = null;