Skip to content

Commit

Permalink
Merge branch 'release/v0.5.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
RamezIssac committed Feb 24, 2021
2 parents 1d3c4a2 + 06fa6d5 commit 46d0601
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [0.5.7]

- Add ability to refer to related fields in a group by report(@jrutila)

## [0.5.6]

- Add exclude_field to report_form_factory (@gr4n0t4)
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ You can simply use a code like this
# in views.py
from django.db.models import Sum
from slick_reporting.views import SlickReportView
from slick_reporting.fields import SlickReportField
from .models import MySalesItems
class TotalProductSales(SlickReportView):
Expand Down Expand Up @@ -91,6 +92,7 @@ You can do a monthly time series :
# in views.py
from slick_reporting.views import SlickReportView
from slick_reporting.fields import SlickReportField
from .models import MySalesItems
class MonthlyProductSales(SlickReportView):
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions slick_reporting/__init__.py
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 46d0601

Please sign in to comment.