mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-03-16 22:10:31 +00:00
Prepared 0.8b2 release.
This commit is contained in:
parent
1f419ee5f4
commit
ca453533e4
4 changed files with 26 additions and 2 deletions
|
|
@ -30,6 +30,7 @@ Contributors
|
|||
* Francesc Arpí Roca
|
||||
* Mathieu Leplatre
|
||||
* Thom Wiggers
|
||||
* Warnar Boekkooi
|
||||
* And many more ... (if you miss your name here, please let us know!)
|
||||
|
||||
.. _django-linguo: https://github.com/zmathew/django-linguo
|
||||
|
|
|
|||
|
|
@ -1,3 +1,26 @@
|
|||
v0.8b2
|
||||
======
|
||||
Date: 2014-07-18
|
||||
|
||||
ADDED: Explicit support for Python 3.4 (should have already worked for
|
||||
older versions that supported Python 3).
|
||||
(resolves issue #254)
|
||||
ADDED: Support for Django 1.7 migrations.
|
||||
|
||||
FIXED: Dict iteration Exception under Python 3.
|
||||
(resolves issue #256,
|
||||
thanks Jacek Tomaszewski)
|
||||
FIXED: Reduce usage under Python 3.
|
||||
(thanks Jacek Tomaszewski)
|
||||
FIXED: Support for AppConfigs in INSTALLED_APPS
|
||||
(resolves issue #252,
|
||||
thanks Warnar Boekkooi, Jacek Tomaszewski)
|
||||
FIXED: Rewrite field names in select_related. Fix deffered models registry.
|
||||
Rewrite spanned queries on all levels for defer/only.
|
||||
(resolves issue #248,
|
||||
thanks Jacek Tomaszewski)
|
||||
|
||||
|
||||
v0.8b1
|
||||
======
|
||||
Date: 2014-06-22
|
||||
|
|
|
|||
2
PKG-INFO
2
PKG-INFO
|
|
@ -1,6 +1,6 @@
|
|||
Metadata-Version: 1.0
|
||||
Name: django-modeltranslation
|
||||
Version: 0.8b1
|
||||
Version: 0.8b2
|
||||
Summary: Translates Django models using a registration approach.
|
||||
Home-page: https://github.com/deschler/django-modeltranslation
|
||||
Author: Peter Eschler,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
Version code adopted from Django development version.
|
||||
https://github.com/django/django
|
||||
"""
|
||||
VERSION = (0, 8, 0, 'beta', 1)
|
||||
VERSION = (0, 8, 0, 'beta', 2)
|
||||
default_app_config = 'modeltranslation.apps.ModeltranslationConfig'
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue