Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kluchrj committed Jul 1, 2020
1 parent df2b6ef commit 7025745
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
Changelog
=========

v1.0.1 (Released 7/1/2020)
--------------------------

- Fix admin error when looking up malformed permission strings.


v1.0.0 (Released 12/4/2019)
---------------------------

- Decorator processors improvements.
- Decorator processor improvements.

Added support for nested decorators:

Expand Down
2 changes: 1 addition & 1 deletion permissions_auditor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"Permissions auditing for Django."

__version__ = '1.0.0'
__version__ = '1.0.1'


default_app_config = 'permissions_auditor.apps.PermissionsAuditorConfig'
2 changes: 1 addition & 1 deletion permissions_auditor/processors/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def can_process(self, view):

def get_permission_required(self, view):
"""
Returns ermissions required on the provided view.
Returns permissions required on the provided view.
Must return an iterable.
:param view: the view being processed.
Expand Down

0 comments on commit 7025745

Please sign in to comment.