Bump version: 9.6.0 → 9.6.1

This commit is contained in:
Zach Borboa
2022-06-30 20:33:15 -04:00
parent 38da94f9b0
commit d453257b12
2 changed files with 11 additions and 1 deletions
+10
View File
@@ -4,6 +4,16 @@ PHP Curl Class uses semantic versioning with version numbers written as `MAJOR.M
`MINOR` and `PATCH` version changes. It is recommended to review `MAJOR` changes prior to upgrade as there may be
backwards-incompatible changes that will affect existing usage.
## 9.6.1 - 2022-06-30
### Fixed
- Attempt to stop active requests when `MultiCurl::stop()` is called
[#714](https://github.com/php-curl-class/php-curl-class/issues/714)
[#718](https://github.com/php-curl-class/php-curl-class/issues/718)
- Retain keys for arrays with null values when building post data
[#712](https://github.com/php-curl-class/php-curl-class/issues/712)
## 9.6.0 - 2022-03-17
### Added
+1 -1
View File
@@ -8,7 +8,7 @@ use Curl\Url;
class Curl
{
const VERSION = '9.6.0';
const VERSION = '9.6.1';
const DEFAULT_TIMEOUT = 30;
public $curl = null;