From e79d1980a7da4bfec887256c353c3bba9b9e0191 Mon Sep 17 00:00:00 2001 From: Ramez Ashraf Date: Sun, 16 Jun 2024 11:39:11 +0300 Subject: [PATCH] Version bump --- CHANGELOG.md | 6 ++++++ slick_reporting/__init__.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7973b0d..53fab64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [1.3.1] - 2024-06-16 +- Fix issue with Line Chart on highcharts engine +- Reintroduce the stacking option on highcharts engine. +- Fix issue with having different version of the same chart on the same page. +- Enhanced the demo dashboard to show more capabilities regarding the charts. + ## [1.3.0] - 2023-11-08 - Implement Slick reporting media override feature + docs - Add `Integrating reports into your Admin site` section to the docs diff --git a/slick_reporting/__init__.py b/slick_reporting/__init__.py index 50f7f93..853105b 100644 --- a/slick_reporting/__init__.py +++ b/slick_reporting/__init__.py @@ -1,5 +1,5 @@ default_app_config = "slick_reporting.apps.ReportAppConfig" -VERSION = (1, 3, 0) +VERSION = (1, 3, 1) -__version__ = "1.3.0" +__version__ = "1.3.1"