* Fixed a bug where `read_excel` will fail when using `read_style=True` in cases where specific themes are used (See [GitHub issue 37](https://github.com/DeepSpace2/StyleFrame/issues/37)).
1.5
* Added `complement_style` and `complement_height` arguments to `StyleFrame.apply_style_by_indexes` * Added support for comments * Renamed `Styler.create_style` method to `to_openpyxl_style` (`create_style` is still available for backward compatibility) * Fixed a bug not allowing to access StyleFrame columns by dot notation in case a column name is a number
1.4
* **No longer supporting Python 3.3** * StyleFrame objects no longer expose .ix method as it is deprecated since pandas 0.20. Use .loc or .iloc instead * Added ability to access StyleFrame columns as attributes (eg `sf.column_a`) * Added conditional formatting * Added `best_fit` to `to_excel` method * Added support for pandas <= 0.22.0 * Added support for theme colors when reading styles from Excel sheets * Added option to use `Styler` objects when reading styles from Excel sheets * Using a JSON schema to validate json from command line * Added command line argument --show-schema
1.3.1
* Improved error message if invalid style arguments are used in JSON through the commandline interface * Fixed an error importing utils in case there is already a utils module in Python's path (see [GitHub issue 31](https://github.com/DeepSpace2/StyleFrame/issues/31))
1.3
* Added `utils.fill_pattern_types` * Added `wrap_text`, `shrink_to_fit`, `fill_pattern_type` and `indent` arguments to `Styler.__init__`
1.2
* Fixed an issue when running tests from code * Using `.loc` and `.iloc` instead of `.ix` since `.ix` is deprecated in pandas >0.20 * Added `horizontal_alignment` and `vertical_alignment` arguments to `Styler.__init__` * Added `style_alternate_rows` method to `StyleFrame`.