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 620bf40 commit 45c0915Copy full SHA for 45c0915
CHANGELOG.md
@@ -4,6 +4,16 @@ 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.3.1 - 2021-08-05
8
+
9
+### Changed
10
11
+- Enabled strict types (`declare(strict_types=1);`)
12
13
+### Fixed
14
15
+- Fixed `Curl::downloadFileName` not being set correctly
16
17
## 9.3.0 - 2021-07-23
18
19
### Added
src/Curl/Curl.php
@@ -8,7 +8,7 @@
class Curl
{
- const VERSION = '9.3.0';
+ const VERSION = '9.3.1';
const DEFAULT_TIMEOUT = 30;
public $curl = null;
0 commit comments