diff --git a/CHANGELOG.md b/CHANGELOG.md index 89a4489..3081238 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.2.7] - 2020-07-24 +### Updates +- Bring back crosstab capability +- Rename `quan` to the more verbose `quantity` +- Minor enhancements around templates + ## [0.2.6] - 2020-06-06 ### Added diff --git a/docs/source/conf.py b/docs/source/conf.py index dab530c..14ab01c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ master_doc = 'index' # The full version, including alpha/beta/rc tags -release = '0.1.3' +release = '0.2.7' # -- General configuration --------------------------------------------------- diff --git a/slick_reporting/__init__.py b/slick_reporting/__init__.py index 6988fd4..3e3df01 100644 --- a/slick_reporting/__init__.py +++ b/slick_reporting/__init__.py @@ -1,6 +1,6 @@ default_app_config = 'slick_reporting.apps.ReportAppConfig' -VERSION = (0, 2, 6) +VERSION = (0, 2, 7) -__version__ = '0.2.6' +__version__ = '0.2.7'