diff --git a/CHANGELOG.md b/CHANGELOG.md index acdac08..501a9ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [0.6.3] + +- Change the deprecated in Django 4 `request.is_ajax` . + ## [0.6.2] - Fix an issue with time series calculating first day of the month to be of the previous month #46 diff --git a/docs/source/conf.py b/docs/source/conf.py index 12bb949..ba0cb42 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.6.2' +release = '0.6.3' # -- General configuration --------------------------------------------------- diff --git a/slick_reporting/__init__.py b/slick_reporting/__init__.py index 7693eef..928efe3 100644 --- a/slick_reporting/__init__.py +++ b/slick_reporting/__init__.py @@ -1,5 +1,5 @@ default_app_config = 'slick_reporting.apps.ReportAppConfig' -VERSION = (0, 6, 2) +VERSION = (0, 6, 3) -__version__ = '0.6.2' +__version__ = '0.6.3'