CHANGELOG.md in spout-0.10.2 vs CHANGELOG.md in spout-0.11.0.beta1
- old
+ new
@@ -1,4 +1,40 @@
+## 0.11.0
+
+### Deprecations
+- **Image Command**
+ - Spout variable graphs are no longer required as images by the NSRR webserver and have been removed
+
+### Enhancements
+- **Deploy Command**
+ - The deploy command can now accept flags and arguments that modify and scope graphs and images
+ - ex: `spout deploy WEBSERVER var1 var2 --rows=100 --clean`
+ - This pushes a clean version of graphs and images based on the first 100 rows in the CSVs for var1 and var2
+ - Spout now provides detailed information when deploying variables, forms, and domains
+ - CSVs can now be grouped into subfolders within their version folders, ex:
+ - `<project_name>/csvs/<VERSION>/dataset-main.csv`
+ - `<project_name>/csvs/<VERSION>/subfolder/dataset-extra-a.csv`
+ - `<project_name>/csvs/<VERSION>/subfolder/dataset-extra-b.csv`
+ - `CHANGELOG.md` and `KNOWNISSUES.md` are now uploaded alongside datasets during a deploy
+- **Graph Command**
+ - Tables no longer include unknown values for variables that don't exist across other CSVs with the same subject and visit
+ - Tables still track unknown values if the CSV contains a column for the variable, but the cell for subject is blank
+ - Histograms of variables that only contain a small range (less than 12) of integers now use discrete buckets of size 1 instead of creating fractional buckets
+ - Numbers less than one now respect the precision of the number when computing means and related statistics
+- **Export Command**
+ - Commonly Used attribute is now included in data dictionary exports
+- **Tests Added**
+ - New tests were added to check the format of variable names, form names, and domain names
+- **Help Command**
+ - The help command now allows users to learn more about individual commands
+ - ex: `spout help deploy`
+- **Gem Changes**
+ - Updated to Ruby 2.3.0
+ - Bundler is now a required dependency
+
+### Refactoring
+- Started refactoring code base to better adhere to RuboCop style recommendations
+
## 0.10.2 (December 29, 2014)
### Bug Fix
- Fixed an issue that flooded test output with uninitialized string class instance variable `@disable_colorization`