diff --git a/README.rst b/README.rst index 23db7b0..6be49ef 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ Terms Of Service Installation 2. Add ``tos`` to your ``INSTALLED_APPS`` setting. -3. Sync your database with ``python manage.py migrate`` or ``python manage.py syncdb`` for Django < 1.7. +3. Sync your database with ``python manage.py migrate`` Configuration ============= @@ -71,7 +71,7 @@ Advantages * Skips the agreement check when the user is anonymous or not signed in * Skips the agreement check when the request is AJAX * Skips the agreement check when the request isn't a ``GET`` request (to avoid getting in the way of data mutations) - + Disadvantages ------------- @@ -101,7 +101,7 @@ Option 2 Configuration 2. Optional: Since the cache used by TOS will be overwhelmingly read-heavy, you can use a separate cache specifically for TOS. To do so, create a new cache in your project's ``settings.py``: .. code-block:: python - + CACHES = { ... # The cache specifically for django-tos diff --git a/tos/__init__.py b/tos/__init__.py index 745750e..02113bc 100644 --- a/tos/__init__.py +++ b/tos/__init__.py @@ -1 +1 @@ -VERSION = (0, 9, 0) +VERSION = (1, 0, 0)