- Bumping version to 1.1

- Adding me to AUTHORS :)
- Correcting login url name to auth_login to keep up with django standards
This commit is contained in:
Krzysztof Dorosz 2012-10-14 23:45:49 +02:00
parent 2b3efcfcb0
commit 705356cb53
3 changed files with 4 additions and 3 deletions

View file

@ -4,3 +4,4 @@ The following is a list of much appreciated contributors:
Daniel Greenfeld <pydanny@gmail.com>
Frank Wiles <frank@revsys.com>
Krzysztof Dorosz <cypreess@gmail.com>

View file

@ -22,6 +22,6 @@ Installation
# terms of service links
urlpatterns += patterns('',
(r'^login/$', 'tos.views.login', {}, 'login',),
(r'^terms-of-service/', include('tos.urls')),
url(r'^login/$', 'tos.views.login', {}, 'auth_login',),
url(r'^terms-of-service/', include('tos.urls')),
)

View file

@ -1 +1 @@
VERSION = (0, 1, 0)
VERSION = (0, 1, 1)