diff --git a/LICENSE.txt b/LICENSE.txt index 8de5fb4..739aaf2 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2008-2014, Jannis Leidel +Copyright (c) 2008-2015, Jannis Leidel All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/docs/conf.py b/docs/conf.py index 190f1c6..5356d19 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ # General information about the project. project = u'django-robots' -copyright = u'2008-2014, Jannis Leidel' +copyright = u'2008-2015, Jannis Leidel' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/docs/index.txt b/docs/index.txt index e738bba..e84cea3 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -130,6 +130,13 @@ The default value is ``None`` (no caching). Changelog ========= +1.1 (05/12/2015) +---------------- + +- Fixed compatibility to Django 1.7 and 1.8. + +- Moved South migrations into different subdirectory so South>=1.0 is needed. + 1.0 (01/16/2014) ---------------- diff --git a/robots/__init__.py b/robots/__init__.py index 70d73c2..f901408 100644 --- a/robots/__init__.py +++ b/robots/__init__.py @@ -1,2 +1 @@ -# following PEP 386 -__version__ = "1.0" +__version__ = "1.1" diff --git a/robots/forms.py b/robots/forms.py index 40763ec..0dcc7ef 100644 --- a/robots/forms.py +++ b/robots/forms.py @@ -9,7 +9,6 @@ class Meta: model = Rule fields = "__all__" - def clean(self): if (not self.cleaned_data.get("disallowed", False) and not self.cleaned_data.get("allowed", False)):