We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 034b483 commit 2e63c0dCopy full SHA for 2e63c0d
CHANGELOG.md
@@ -4,6 +4,12 @@ PHP Curl Class uses semantic versioning with version numbers written as `MAJOR.M
4
`MINOR` and `PATCH` version changes. It is recommended to review `MAJOR` changes prior to upgrade as there may be
5
backwards-incompatible changes that will affect existing usage.
6
7
+## 9.1.0 - 2021-03-24
8
+
9
+### Added
10
11
+- Support for using relative urls with MultiCurl::add\*() methods [#628](https://github.com/php-curl-class/php-curl-class/issues/628)
12
13
## 9.0.0 - 2021-03-19
14
15
### Changed
src/Curl/Curl.php
@@ -8,7 +8,7 @@
class Curl
{
- const VERSION = '9.0.0';
+ const VERSION = '9.1.0';
const DEFAULT_TIMEOUT = 30;
public $curl = null;
0 commit comments