Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.7.4 (2025-12-09)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On pourrait utiliser la même nomination que le dernier tag dans notre fork 0.7.3-resulto, et mettre 0.7.4-powergo pour celui-ci?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Et c'est good, j'ai vérifié et loyalty cible bien le dernier tag, donc ça brisera rien de ce côté si jamais

-------------------

- Replace ugettext_lazy with gettext_lazy for Django 4.2 compatibility

0.7.3 (2013-09-02)
-------------------

Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def read(*rnames):

setup(
name="django-transmeta",
version="0.7.3-python3-0.7.4",
version="0.7.4",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ce fichier semble servir à package le projet pour pypi. Pas si important comme on ne le public pas nous, mais c'est bon quand même :)

author="Yaco Sistemas S.L.",
author_email="garcia.marc@gmail.com",
description="Transmeta is an application for translatable content in Django's models.",
Expand Down
2 changes: 1 addition & 1 deletion transmeta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down