diff --git a/CHANGELOG.md b/CHANGELOG.md index bfeb9ecd..82c21487 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,23 @@ All Notable changes to `League\Csv` will be documented in this file ## NEXT - YYYY-MM-DD +### Added +- Nothing + +### Deprecated +- Nothing + +### Fixed +- Nothing + +### Remove +- Nothing + +### Security +- Nothing + +## 6.0 - 2014-08-28 + ### Added - Stream Filter API in `League\Csv\AbstractCsv` - named constructors `createFromPath` and `createFromFileObject` in `League\Csv\AbstractCsv` to ease CSV object instantiation diff --git a/README.md b/README.md index 1979ab20..0dee1a4b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ This package is compliant with [PSR-2] and [PSR-4]. System Requirements ------- -You need **PHP >= 5.4.0** and the `mbstring` extension to use `League\Csv` but the latest stable version of PHP is recommended. +You need **PHP >= 5.4.0** or **HHVM >= 3.2** and the `mbstring` extension to use `League\Csv` but the latest stable version of PHP/HHVM is recommended. Install ------- @@ -35,7 +35,7 @@ Install the `csv` package with Composer. ```json { "require": { - "league/csv": "5.*" + "league/csv": "6.*" } } ```