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