Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed May 12, 2015
1 parent 8f5e332 commit 314698a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions docs/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
----------------

Expand Down
3 changes: 1 addition & 2 deletions robots/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# following PEP 386
__version__ = "1.0"
__version__ = "1.1"
1 change: 0 additions & 1 deletion robots/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)):
Expand Down

0 comments on commit 314698a

Please sign in to comment.