Bump version: 9.3.1 → 9.4.0

This commit is contained in:
Zach Borboa
2021-09-04 14:28:24 -04:00
parent a8714527e6
commit e6de01c8c3
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.4.0 - 2021-09-04
### Changed
- Method `Url::parseUrl()` is now public
### Fixed
- Fix parsing schemeless urls [#679](https://github.com/php-curl-class/php-curl-class/issues/679)
## 9.3.1 - 2021-08-05
### Changed
+1 -1
View File
@@ -8,7 +8,7 @@ use Curl\Url;
class Curl
{
const VERSION = '9.3.1';
const VERSION = '9.4.0';
const DEFAULT_TIMEOUT = 30;
public $curl = null;