Skip to content

Commit

Permalink
Bump 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Feb 28, 2014
1 parent 0ce426c commit 4b45750
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
V 1.4.3
Allow arbitrary number of x-labels on line plot (thanks nsmgr8)

V 1.4.2
Fix broken tests

Expand Down
7 changes: 7 additions & 0 deletions demo/moulinrouge/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,4 +393,11 @@ def test_frenchmapregions():
fmap.title = 'French map'
return fmap.render_response()

@app.route('/test/labels')
def test_labels():
line = Line()
line.add('test1', range(100))
line.x_labels = map(str, range(11))
return line.render_response()

return filter(lambda x: x.startswith('test'), locals())
2 changes: 1 addition & 1 deletion pygal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""

__version__ = '1.4.2'
__version__ = '1.4.3'
import sys
from pygal.config import Config
from pygal.ghost import Ghost, REAL_CHARTS
Expand Down

0 comments on commit 4b45750

Please sign in to comment.