Bump version: 9.4.0 → 9.5.0

This commit is contained in:
Zach Borboa
2021-11-21 14:12:30 -05:00
parent 92a8f3bbe2
commit 8340a4c0ca
2 changed files with 13 additions and 1 deletions
+12
View File
@@ -4,6 +4,18 @@ 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.5.0 - 2021-11-21
### Added
- Method `Curl::setStop()` for stopping requests early without downloading the full response body
[#681](https://github.com/php-curl-class/php-curl-class/issues/681)
### Fixed
- Fixed constructing request url when using `MultiCurl::addPost()`
[#686](https://github.com/php-curl-class/php-curl-class/issues/686)
## 9.4.0 - 2021-09-04
### Changed
+1 -1
View File
@@ -8,7 +8,7 @@ use Curl\Url;
class Curl
{
const VERSION = '9.4.0';
const VERSION = '9.5.0';
const DEFAULT_TIMEOUT = 30;
public $curl = null;