From 932bb9b50e7fbddeb1924a01858b8afc38758813 Mon Sep 17 00:00:00 2001 From: Ramez Issac Date: Wed, 10 Feb 2021 08:23:49 +0200 Subject: [PATCH] v0.5.6 --- CHANGELOG.md | 5 +++++ docs/source/conf.py | 2 +- slick_reporting/__init__.py | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1d5543..bf1bee0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.5.6] + +- Add exclude_field to report_form_factory (@gr4n0t4) +- Added support for group by Many To Many field (@gr4n0t4) + ## [0.5.5] - Add datepicker initialization function call (@squio) diff --git a/docs/source/conf.py b/docs/source/conf.py index 79ac1b2..f83d1a2 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.5.5' +release = '0.5.6' # -- General configuration --------------------------------------------------- diff --git a/slick_reporting/__init__.py b/slick_reporting/__init__.py index 8cc8f23..3dc8ef8 100644 --- a/slick_reporting/__init__.py +++ b/slick_reporting/__init__.py @@ -1,6 +1,6 @@ default_app_config = 'slick_reporting.apps.ReportAppConfig' -VERSION = (0, 5, 5) +VERSION = (0, 5, 6) -__version__ = '0.5.5' +__version__ = '0.5.6'