Skip to content

Commit b1c882e

Browse files
committed
Bump version: 8.9.2 → 9.0.0
Fixes php-curl-class#380, php-curl-class#541
1 parent 161f9ae commit b1c882e

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,21 @@ PHP Curl Class uses semantic versioning with version numbers written as `MAJOR.M
44
`MINOR` and `PATCH` version changes. It is recommended to review `MAJOR` changes prior to upgrade as there may be
55
backwards-incompatible changes that will affect existing usage.
66

7-
### Changes
7+
## 9.0.0 - 2021-03-19
88

9-
(TODO: Add changes for next `MAJOR` version release.)
9+
### Changed
1010

11-
### Manual Review
11+
- Use short array syntax
1212

13-
Manually view changes on the [comparison page](https://github.com/php-curl-class/php-curl-class/compare/). For example,
14-
visit [7.4.0...8.0.0](https://github.com/php-curl-class/php-curl-class/compare/7.4.0...8.0.0) to compare the changes for
13+
### Removed
14+
15+
- Support for PHP 5.3, 5.4, 5.5, and 5.6 [#380](https://github.com/php-curl-class/php-curl-class/issues/380)
16+
17+
## Manual Review
18+
19+
A manual review of changes is possible using the
20+
[comparison page](https://github.com/php-curl-class/php-curl-class/compare/). For example, visit
21+
[7.4.0...8.0.0](https://github.com/php-curl-class/php-curl-class/compare/7.4.0...8.0.0) to compare the changes for
1522
the `MAJOR` upgrade from 7.4.0 to 8.0.0. Comparing against `HEAD` is also possible using the `tag...HEAD` syntax
1623
([8.3.0...HEAD](https://github.com/php-curl-class/php-curl-class/compare/8.3.0...HEAD)).
1724

src/Curl/Curl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Curl
99
{
10-
const VERSION = '8.9.2';
10+
const VERSION = '9.0.0';
1111
const DEFAULT_TIMEOUT = 30;
1212

1313
public $curl = null;

0 commit comments

Comments
 (0)