Browse Source

Pre release

pull/339/head
Florian Mounier 8 years ago
parent
commit
81751ca453
  1. 6
      docs/changelog.rst
  2. 2
      pygal/__init__.py

6
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
=====

2
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

Loading…
Cancel
Save