Skip to content

Commit

Permalink
chore: Resolve a RemovedInDjango40Warning (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
christopappas authored Nov 1, 2021
1 parent de828ef commit 7878300
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Change Log
Unreleased
--------------------

[1.5.1] - 2021-11-01
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Replacing ugettext_lazy with gettext_lazy to resolve RemovedInDjango40Warning.

[1.5.0] - 2021-07-07
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion edx_rbac/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Library to help managing role based access controls for django apps.
"""

__version__ = '1.5.0'
__version__ = '1.5.1'

default_app_config = 'edx_rbac.apps.EdxRbacConfig' # pylint: disable=invalid-name
2 changes: 1 addition & 1 deletion edx_rbac/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from django.core.exceptions import FieldDoesNotExist
from django.db import models
from django.db.models.base import ModelBase
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _
from model_utils.models import TimeStampedModel


Expand Down

0 comments on commit 7878300

Please sign in to comment.