Bump version: 9.0.0 → 9.1.0

This commit is contained in:
Zach Borboa
2021-03-24 21:19:16 -04:00
parent 034b483c47
commit 2e63c0d00a
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -4,6 +4,12 @@ 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.1.0 - 2021-03-24
### Added
- Support for using relative urls with MultiCurl::add\*() methods [#628](https://github.com/php-curl-class/php-curl-class/issues/628)
## 9.0.0 - 2021-03-19
### Changed
+1 -1
View File
@@ -8,7 +8,7 @@ use Curl\Url;
class Curl
{
const VERSION = '9.0.0';
const VERSION = '9.1.0';
const DEFAULT_TIMEOUT = 30;
public $curl = null;