From f5732dfbf0f19dc82272214efd8660b2cb87c67f Mon Sep 17 00:00:00 2001 From: Ramez Issac Date: Sun, 29 Nov 2020 07:49:06 +0200 Subject: [PATCH] v0.4.2 --- CHANGELOG.md | 9 +++++++-- slick_reporting/__init__.py | 4 ++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f8fc74..7c909e5 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.4.2] - 2020-11-29 + +- Properly initialize Datepicker (#12 @squio) +- Use previous date-range for initialization if it exists + + ## [0.4.1] - 2020-11-26 - Bring back calculateTotalOnObjectArray (#11) @@ -28,8 +34,7 @@ All notable changes to this project will be documented in this file. ## [0.2.8] - 2020-10-05 ### Updated -- Fixed an error with ManyToOne Relation not being able to - get its verbose name +- Fixed an error with ManyToOne Relation not being able to get its verbose name (@mswastik) ## [0.2.7] - 2020-07-24 diff --git a/slick_reporting/__init__.py b/slick_reporting/__init__.py index a3b6a97..3633449 100644 --- a/slick_reporting/__init__.py +++ b/slick_reporting/__init__.py @@ -1,6 +1,6 @@ default_app_config = 'slick_reporting.apps.ReportAppConfig' -VERSION = (0, 4, 1) +VERSION = (0, 4, 2) -__version__ = '0.4.1' +__version__ = '0.4.2'