diff --git a/CHANGES.rst b/CHANGES.rst index d1fe70f..a3cfa74 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +0.7.4 (2025-12-09) +------------------- + +- Replace ugettext_lazy with gettext_lazy for Django 4.2 compatibility + 0.7.3 (2013-09-02) ------------------- @@ -42,7 +47,7 @@ 0.6.7 (2012-03-20) ------------------ -- Change the representation (verbose_name) of the transmeta labels +- Change the representation (verbose_name) of the transmeta labels 0.6.6 (2012-02-06) diff --git a/setup.py b/setup.py index 64a1d18..f194f7b 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def read(*rnames): setup( name="django-transmeta", - version="0.7.3-python3-0.7.4", + version="0.7.4", author="Yaco Sistemas S.L.", author_email="garcia.marc@gmail.com", description="Transmeta is an application for translatable content in Django's models.", diff --git a/transmeta/__init__.py b/transmeta/__init__.py index 29bba23..f25be93 100644 --- a/transmeta/__init__.py +++ b/transmeta/__init__.py @@ -6,7 +6,7 @@ from django.conf import settings from django.core.exceptions import ImproperlyConfigured from django.utils.translation import ( - get_language as django_get_language, ugettext_lazy as _) + get_language as django_get_language, gettext_lazy as _) LANGUAGE_CODE = 0