diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d406a968..bb6eeeea 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,8 @@ +v0.13-3 +=========== +Date: 2019-07-22 + FIXED: Broken "Add another inline" (#475) + v0.13-2 =========== Date: 2019-07-01 diff --git a/PKG-INFO b/PKG-INFO index 11a799f5..fab98ae9 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.13-2 +Version: 0.13-3 Summary: Translates Django models using a registration approach. Home-page: https://github.com/deschler/django-modeltranslation Author: Peter Eschler, diff --git a/modeltranslation/__init__.py b/modeltranslation/__init__.py index 3ee42831..d331cc39 100644 --- a/modeltranslation/__init__.py +++ b/modeltranslation/__init__.py @@ -3,7 +3,7 @@ Version code adopted from Django development version. https://github.com/django/django """ -VERSION = (0, 13, 2, 'final', 0) +VERSION = (0, 13, 3, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'