Skip to content

Commit

Permalink
Prepare v2.0.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dfunckt committed Jul 22, 2018
1 parent 1bea26b commit 84de104
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Changelog
=========

## v2.0.0 - 2018/07/22

- Removed support for Python 2.6 and 3.3
- Removed support for Django versions before 1.11
- Removed ``SkipPredicate`` exception and ``skip`` method of ``Predicate``
- Removed ``replace_rule`` and related APIs
- Added ``set_rule`` and related APIs to safely replace a rule without having
to ensure one already exists
- Added compatibility with Django v2.1
- Re-introduced support for PyPy and PyPy 3
- Changed Python and Django supported versions policy to exclude end-of-life
versions. Support for EOL'd versions will be dropped in minor version
updates of ``rules`` from now on.

## v1.4.0 - 2018/07/21

- Fixed masking AttributeErrors raised from CBV get_object
Expand Down
2 changes: 1 addition & 1 deletion rules/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
always_allow, always_deny, is_authenticated,
is_superuser, is_staff, is_active, is_group_member)

VERSION = (1, 4, 0, 'final', 1)
VERSION = (2, 0, 0, 'final', 1)

default_app_config = 'rules.apps.RulesConfig'

0 comments on commit 84de104

Please sign in to comment.