From 81751ca453fd60a1d8266b04f65976cc9abe930a Mon Sep 17 00:00:00 2001 From: Florian Mounier Date: Mon, 5 Sep 2016 15:17:00 +0200 Subject: [PATCH] Pre release --- docs/changelog.rst | 6 +++--- pygal/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 0815aad..6b3c393 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,11 +2,11 @@ Changelog ========= -2.3.0 UNRELEASED -================ +2.3.0 +===== * New call API: `chart = Line(fill=True); chart.add('title', [1, 3, 12]); chart.render()` can now be replaced with `Line(fill=True)(1, 3, 12, title='title').render()` - +* Drop python 2.6 support 2.2.3 ===== diff --git a/pygal/__init__.py b/pygal/__init__.py index de10d2e..68c21c3 100644 --- a/pygal/__init__.py +++ b/pygal/__init__.py @@ -24,7 +24,7 @@ and the maps extensions namespace module. """ -__version__ = '2.2.3' +__version__ = '2.3.0' import pkg_resources import sys