From 2013a8f9f46cd694978b2bc72b4c14d200ee60f8 Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Tue, 20 Oct 2015 23:45:13 -0400 Subject: [PATCH] Documenting latest xlsx and csv changes --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06d61e5..027b534 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,9 @@ Squib follows [semantic versioning](http://semver.org). ## v0.8.0 / Unreleased Features -* The `xlsx` and `csv` methods will now strip leading and trailing whitespace by default where applicable. This is now turned on by default, but can be turned off with `strip: false`. -* The `xlsx` and `csv` methods will now yield to a block (if given) for each cell so you can do some extra processing if you like. See samples/excel.rb for an example. +* The `xlsx` and `csv` support quantity explosion! Just use the column name 'Qty' and put integers in your sheet and you'll produce copies of the entire row. See README and the csv sample for more info. (#78) +* The `xlsx` and `csv` methods will now strip leading and trailing whitespace by default where applicable. This is now turned on by default, but can be turned off with `strip: false`. (#79) +* The `xlsx` and `csv` methods will now yield to a block (if given) for each cell so you can do some extra processing if you like. See samples/excel.rb for an example. (#108) Compatibility change: * Stripping leading and trailing whitespace of xlsx and csv values by default might change how your data gets parsed.