diff options
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | README.md | 10 |
2 files changed, 10 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a13ed6e..e3644b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,11 @@ All Notable changes to `League\Csv` will be documented in this file ## Next - 2015-XX-XX ### Added -- `Writer::NULL_HANDLING_DISABLED` To completely remove null handling when inserting new data. -- `Writer::useValidation` To enable/disabled complete validation when inserting new data. +- `Writer::NULL_HANDLING_DISABLED` to completely remove null handling when inserting new data. +- `Writer::useValidation` to enable/disabled complete validation when inserting new data. ### Deprecated -- `Writer` and `Reader` default constructor, they will be removed from the public API in the next major version. You should used the named constructors instead. +- Using `Writer` and `Reader` default constructor is deprecated you should favor the use of named constructors. The default constructor won't be accessible anymore in the next MAJOR version. ### Fixed - `jsonSerialize`, `toXML` and `toHTML` output can be modified using `Reader` query options methods. @@ -21,7 +21,7 @@ All Notable changes to `League\Csv` will be documented in this file - BOM addition on export improved by removing existing BOM character if found ### Remove -- Nothing +- Setting `ini_set("auto_detect_line_endings", true);` is no longer set in the class constructor. Mac OS X users must explicitly set this ini options in their script. ## 6.3.0 - 2015-01-21 @@ -15,11 +15,13 @@ by utilizing PHP native classes whenever possible. Highlights ------- -* Easy reading/writing to CSV files in a memory efficient and scalable way -* CSV manipulation using stream filters -* Content filtering using PHP's SPL Iterators capabilities -* Easy conversion in JSON, XML or HTML format +* Simple API +* Read and Write to CSV documents in a memory efficient and scalable way +* Use SPL to interact with the CSV documents +* Support PHP Stream filtering capabilities +* Transform CSV documents into popular format (JSON, XML or HTML) * Fully documented +* Fully Unit tested * Framework-agnostic * Composer ready, [PSR-2] and [PSR-4] compliant |