Skip to content

Commit

Permalink
Update metadata for bugfix release 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spectras committed Jun 1, 2014
1 parent 700be73 commit 2f81fc1
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 4 deletions.
12 changes: 12 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ Changelog

.. glossary::

0.4.1
Fixes:

- Translations no longer remain in database when deleted depending on
the query that deleted them (bug :issue:`183`).
- :meth:`~hvad.models.TranslatableModel.get_available_languages` now
uses translations if they were prefetched with
:meth:`~django.db.models.query.QuerySet.prefetch_related`. This
dramatically cuts down the number of queries that
:meth:`~hvad.admin.TranslatableAdmin.all_translations` generate
(bug :issue:`97`).

0.4.0
New Python and Django versions supported:

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '0.4.0'
version = '0.4.1'
# The full version, including alpha/beta/rc tags.
release = '0.4.0'
release = '0.4.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
19 changes: 19 additions & 0 deletions docs/public/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
Release Notes
#############

.. release 0.4.1
*****************************
0.4.1
*****************************

Released on June 1, 2014

Fixes:

- Translations no longer remain in database when deleted depending on
the query that deleted them (bug :issue:`183`).
- :meth:`~hvad.models.TranslatableModel.get_available_languages` now
uses translations if they were prefetched with
:meth:`~django.db.models.query.QuerySet.prefetch_related`. This
dramatically cuts down the number of queries that
:meth:`~hvad.admin.TranslatableAdmin.all_translations` generate
(bug :issue:`97`).

.. release 0.4
*****************************
Expand Down
4 changes: 2 additions & 2 deletions hvad/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.4.0'
VERSION = (0, 4, 0)
__version__ = '0.4.1'
VERSION = (0, 4, 1)

0 comments on commit 2f81fc1

Please sign in to comment.