Bump version: 9.5.0 → 9.5.1

This commit is contained in:
Zach Borboa
2021-12-14 11:26:30 -05:00
parent f73b978762
commit a0a3f2b10b
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -4,6 +4,14 @@ 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.1 - 2021-12-14
### Fixed
- Silence PHP 8.1 deprecations [#691](https://github.com/php-curl-class/php-curl-class/issues/691)
- Remove data parameter from additional request types
[#689](https://github.com/php-curl-class/php-curl-class/issues/689)
## 9.5.0 - 2021-11-21
### Added
+1 -1
View File
@@ -8,7 +8,7 @@ use Curl\Url;
class Curl
{
const VERSION = '9.5.0';
const VERSION = '9.5.1';
const DEFAULT_TIMEOUT = 30;
public $curl = null;