Skip to content

Commit

Permalink
Merge pull request spotify#68 from spotify/chris/radar
Browse files Browse the repository at this point in the history
Added radar chart
  • Loading branch information
cphalpert authored Feb 17, 2019
2 parents 9aa778e + b6b93e0 commit 55a0783
Show file tree
Hide file tree
Showing 7 changed files with 687 additions and 80 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
History
=======

2.5.0 (2019-02-17)
------------------

Improvements:

* Added Radar Chart

2.4.0 (2019-02-16)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Chartify
|status| |release| |python|

.. |status| image:: https://img.shields.io/badge/Status-Beta-blue.svg
.. |release| image:: https://img.shields.io/badge/Release-2.4.0-blue.svg
.. |release| image:: https://img.shields.io/badge/Release-2.5.0-blue.svg
.. |python| image:: https://img.shields.io/badge/Python-3.6-blue.svg

Chartify is a Python library that makes it easy for data scientists to create charts.
Expand Down
3 changes: 2 additions & 1 deletion chartify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@
# limitations under the License.
"""Top-level package for chartify."""
from chartify._core.chart import Chart
from chartify._core.radar_chart import RadarChart
from chartify._core.colors import color_palettes
from chartify._core.options import options
from chartify import examples

__author__ = """Chris Halpert"""
__email__ = '[email protected]'
__version__ = '2.4.0'
__version__ = '2.5.0'

_IPYTHON_INSTANCE = False

Expand Down
Loading

0 comments on commit 55a0783

Please sign in to comment.