diff --git a/README.rst b/README.rst index 41cbc23..4969028 100644 --- a/README.rst +++ b/README.rst @@ -846,6 +846,9 @@ Managing the permissions rule set Changelog ========= +``v1.1.1`` - 2015/12/07 + - Improved handling of skipped predicates + ``v1.1.0`` - 2015/12/05 - Fixed regression that wouldn't short-circuit boolean expressions - Added support for Django 1.9 and Python 3.5 diff --git a/rules/__init__.py b/rules/__init__.py index 0e67003..862733d 100644 --- a/rules/__init__.py +++ b/rules/__init__.py @@ -4,6 +4,6 @@ always_allow, always_deny, is_authenticated, is_superuser, is_staff, is_active, is_group_member) -VERSION = (1, 1, 1, 'alpha', 1) +VERSION = (1, 1, 1, 'final', 1) default_app_config = 'rules.apps.RulesConfig'