From 705356cb53eb092916f515b8d2cbd2e342e7d0ae Mon Sep 17 00:00:00 2001 From: Krzysztof Dorosz Date: Sun, 14 Oct 2012 23:45:49 +0200 Subject: [PATCH] - Bumping version to 1.1 - Adding me to AUTHORS :) - Correcting login url name to auth_login to keep up with django standards --- AUTHORS.txt | 1 + README.rst | 4 ++-- tos/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index 0de79ad..9f2e772 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -4,3 +4,4 @@ The following is a list of much appreciated contributors: Daniel Greenfeld Frank Wiles +Krzysztof Dorosz diff --git a/README.rst b/README.rst index 263666f..1c93ea0 100644 --- a/README.rst +++ b/README.rst @@ -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')), ) \ No newline at end of file diff --git a/tos/__init__.py b/tos/__init__.py index 93c4c7c..e8e61c0 100644 --- a/tos/__init__.py +++ b/tos/__init__.py @@ -1 +1 @@ -VERSION = (0, 1, 0) \ No newline at end of file +VERSION = (0, 1, 1) \ No newline at end of file