-----------------------
* Table now takes (column_name, column_type) pairs. (180)
* Renamed the library to agate. (179)
* Results of common column operations are now cached using a common memoize decorator. (162)
* ated support for Python version 3.2.
* Added support for Python wheel packaging. (127)
* Add PercentileRank computation and usage example to cookbook. (152)
* Add indexed change example to cookbook. (151)
* Add annual change example to cookbook. (150)
* Column.aggregate now invokes Aggregations.
* Column.any, NumberColumn.sum, etc. converted to Aggregations.
* Implement Aggregation and subclasses. (155)
* Move ColumnType subclasses and ColumnOperation subclasses into new modules.
* Table.percent_change, Table.rank and Table.zscores reimplemented as Computers.
* Computer implemented. Table.compute reimplemented. (147)
* NumberColumn.iqr (inter-quartile range) implemented. (102)
* Remove Column.counts as it is not the best way.
* Implement ColumnOperation and subclasses.
* Table.aggregate migrated to TableSet.aggregate.
* Table.group_by now supports grouping by a key function. (140)
* NumberColumn.deciles implemented.
* NumberColumn.quintiles implemented. (46)
* NumberColumn.quartiles implemented. (45)
* Added robust test case for NumberColumn.percentiles. (129)
* NumberColumn.percentiles reimplemented using new method. (130)
* Reorganized and modularized column implementations.
* Table.group_by now returns a TableSet.
* Implement TableSet object. (141)