Skip to content

Commit

Permalink
Version bump 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bennylope committed May 20, 2015
1 parent d874039 commit d350f5b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Contributors
------------

* `Lee Solway <https://github.com/leesolway/>`_
* `zeograd <https://github.com/zeograd/>`_
2 changes: 1 addition & 1 deletion taggit_labels/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.0'
__version__ = '0.3.0'
1 change: 0 additions & 1 deletion tests/test_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def test_selected_tags(self):

def test_custom_selected_tags(self):
widget = LabelWidget(model=MyCustomTag)
print self.post.tags.all
return_list = widget.tag_list([t.name for t in self.post.tags.all()])
self.assertEqual(["Coffee"], [tag[0] for tag in return_list if tag[1] == 'selected'])
self.assertEqual(["tea"], [tag[0] for tag in return_list if tag[1] == ''])
Expand Down

0 comments on commit d350f5b

Please sign in to comment.