|
| 1 | +# Changelog |
| 2 | +All notable changes to this project will be documented in this file. |
| 3 | + |
| 4 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 5 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +## [Unreleased] |
| 8 | +### Added |
| 9 | +- php 7 type hints. |
| 10 | +- This changelog |
| 11 | + |
| 12 | +### Removed |
| 13 | +- php 5 support. |
| 14 | +- php 7.1 support. |
| 15 | + |
| 16 | +### Fixed |
| 17 | +- Incorrect handling of uninitialized pass-by-ref argument in `CurlMulti::exec()` (#8). |
| 18 | + |
| 19 | +### Changed |
| 20 | +- Documentation to reflect the interfaces. |
| 21 | + |
| 22 | +## [2.1.0] - 2017-01-20 |
| 23 | +### Added |
| 24 | +- `CurlInterface`. |
| 25 | +- `CurlMultiInterface`. |
| 26 | +- `CurlShareInterface`. |
| 27 | + |
| 28 | +## [2.0.1] - 2017-01-20 |
| 29 | +### Changed |
| 30 | +- Minor documentation improvements. |
| 31 | + |
| 32 | +## [2.0.0] - 2017-01-20 |
| 33 | +### Added |
| 34 | +- `Curl` object destructor to close the handler. |
| 35 | +- `Curl::getHandle()`. |
| 36 | +- `CurlMulti::init()`. |
| 37 | +- `CurlShare::init()`. |
| 38 | + |
| 39 | +### Removed |
| 40 | +- php 5.3 and 5.4 support. |
| 41 | +- Retry on failure feature. |
| 42 | +- `CurlException` class. |
| 43 | + |
| 44 | +### Changed |
| 45 | +- `Curl::version`, `Curl::strError`, `CurlMulti::strError` are not static anymore. |
| 46 | + |
| 47 | +## [1.0.0] - 2016-02-02 |
| 48 | +### Changed |
| 49 | +- The library moved to "phpcurl/curlwrapper". |
| 50 | + |
| 51 | +## [0.1.2] - 2016-02-02 |
| 52 | +### Fixed |
| 53 | +- The `$opt` flag should not be artificially set to 0. |
| 54 | + |
| 55 | +## [0.1.1] - 2016-01-21 |
| 56 | +### Changed |
| 57 | +- Minor documentation improvements. |
| 58 | + |
| 59 | +## [0.1.0] - 2016-01-21 |
| 60 | +### Added |
| 61 | +- Documentation |
| 62 | +- `CurlException` class. |
| 63 | + |
| 64 | +## [0.0.2] - 2014-02-19 |
| 65 | +### Changed |
| 66 | +- Test cleanup. |
| 67 | + |
| 68 | +## 0.0.1 - 2014-02-17 |
| 69 | +### Added |
| 70 | +- Initial version. |
| 71 | + |
| 72 | +[Unreleased]: https://github.com/phpcurl/curlwrapper/compare/2.1.0...HEAD |
| 73 | +[2.1.0]: https://github.com/phpcurl/curlwrapper/compare/2.0.1...2.1.0 |
| 74 | +[2.0.1]: https://github.com/phpcurl/curlwrapper/compare/2.0.0...2.0.1 |
| 75 | +[2.0.0]: https://github.com/phpcurl/curlwrapper/compare/1.0.0...2.0.0 |
| 76 | +[1.0.0]: https://github.com/phpcurl/curlwrapper/compare/0.1.2...1.0.0 |
| 77 | +[0.1.2]: https://github.com/phpcurl/curlwrapper/compare/0.1.1...0.1.2 |
| 78 | +[0.1.1]: https://github.com/phpcurl/curlwrapper/compare/0.1.0...0.1.1 |
| 79 | +[0.1.0]: https://github.com/phpcurl/curlwrapper/compare/0.0.2...0.1.0 |
| 80 | +[0.0.2]: https://github.com/phpcurl/curlwrapper/compare/0.0.1...0.0.2 |
0 commit comments