Prepared 0.13.1 release.

This commit is contained in:
Sergey Tereschenko 2019-04-18 01:07:41 +03:00
parent 447a60f1cc
commit 18fec04a51
3 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,12 @@
v0.13-1
===========
Date: 2019-04-18
REMOVED: Python 3.5 from test matrix
REMOVED: Django 2.0 from test matrix
FIXED: TabbedTranslationAdmin in django 2.2 (#506)
ADDED: Django 2.2 to test matrix
v0.13-0
===========
Date: 2019-02-21

View file

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: django-modeltranslation
Version: 0.13-0
Version: 0.13-1
Summary: Translates Django models using a registration approach.
Home-page: https://github.com/deschler/django-modeltranslation
Author: Peter Eschler,

View file

@ -3,7 +3,7 @@
Version code adopted from Django development version.
https://github.com/django/django
"""
VERSION = (0, 13, 0, 'final', 0)
VERSION = (0, 13, 1, 'final', 0)
default_app_config = 'modeltranslation.apps.ModeltranslationConfig'