Skip to content

Commit

Permalink
Version bump 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
James Socol committed Dec 1, 2011
1 parent 28aedcf commit 11a99a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion adminplus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
from django.utils.text import capfirst


__version__ = '0.1.3'
VERSION = (0, 1, 4)
__version__ = '.'.join([str(x) for x in VERSION])


class AdminSitePlus(AdminSite):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='django-adminplus',
version='0.1.3',
version='0.1.4',
description='Add new pages to the Django admin.',
long_description=open('README.rst').read(),
author='James Socol',
Expand Down

0 comments on commit 11a99a0

Please sign in to comment.