From c3172ba939bfc5c461c9b092c9752850021c9a5a Mon Sep 17 00:00:00 2001 From: Ramez Ashraf Date: Sun, 28 May 2023 14:12:07 +0300 Subject: [PATCH] version bump --- CHANGELOG.md | 6 ++++++ README.rst | 3 ++- slick_reporting/__init__.py | 4 ++-- tests/tests.py | 1 - 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30ea461..4168d9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.8.0] + +- Breaking: [Only if you use Crosstab reports] renamed crosstab_compute_reminder to crosstab_compute_remainder +- Breaking : [Only if you set the templates statics by hand] renamed slick_reporting to ra.hightchart.js and ra.chartjs.js to + erp_framework.highchart.js and erp_framework.chartjs.js respectively + ## [0.7.0] - Added SlickReportingListView: a Report Class to display content of the model (like a ModelAdmin ChangeList) diff --git a/README.rst b/README.rst index e995a9d..d3505a6 100644 --- a/README.rst +++ b/README.rst @@ -21,6 +21,7 @@ Django Slick Reporting A one stop reports engine with batteries included. +This is project is an extract of the reporting engine of `Django ERP Framework `_ Features -------- @@ -28,7 +29,7 @@ Features - Effortlessly create Simple, Grouped, Time series and Crosstab reports in a handful of code lines. - Create your Custom Calculation easily, which will be integrated with the above reports types - Optimized for speed. -- Batteries included! Chart.js , DataTable.net & a Bootstrap form. +- Batteries included! Highcharts & Chart.js charting capabilities , DataTable.net & easily customizable Bootstrap form. Installation ------------ diff --git a/slick_reporting/__init__.py b/slick_reporting/__init__.py index 4b2b010..01bb61f 100644 --- a/slick_reporting/__init__.py +++ b/slick_reporting/__init__.py @@ -1,5 +1,5 @@ default_app_config = "slick_reporting.apps.ReportAppConfig" -VERSION = (0, 7, 0) +VERSION = (0, 8, 0) -__version__ = "0.7.0" +__version__ = "0.8.0" diff --git a/tests/tests.py b/tests/tests.py index b688f9c..607e307 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -310,7 +310,6 @@ def test_productclientsalesmatrix_no_remainder(self): data = report.get_report_data() self.assertEqual(data[0]["__total__CT%s" % self.client1.pk], 300) self.assertEqual(data[0]["__total__CT%s" % self.client2.pk], 600) - # self.assertEqual(data[0]["__total__CT----"], 900) def test_show_empty_records(self): report = report_generators.ClientTotalBalance()