From 06fa6d5da7f6807919529d4caf805ccf3605b112 Mon Sep 17 00:00:00 2001 From: Ramez Issac Date: Wed, 24 Feb 2021 07:50:14 +0200 Subject: [PATCH] Version Bump --- docs/source/conf.py | 2 +- docs/source/index.rst | 1 + slick_reporting/__init__.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index f83d1a2..9b572a5 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.6' +release = '0.5.7' # -- General configuration --------------------------------------------------- diff --git a/docs/source/index.rst b/docs/source/index.rst index 00950ba..1a6b7d5 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -30,6 +30,7 @@ You can start by using ``SlickReportView`` which is a subclass of ``django.views # in views.py from slick_reporting.views import SlickReportView + from slick_reporting.fields import SlickReportField from .models import MySalesItems class MonthlyProductSales(SlickReportView): diff --git a/slick_reporting/__init__.py b/slick_reporting/__init__.py index 3dc8ef8..d2eb8d6 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, 6) +VERSION = (0, 5, 7) -__version__ = '0.5.6' +__version__ = '0.5.7'