From 2e30ab62884510afd9126438746fa147fe5c3c58 Mon Sep 17 00:00:00 2001 From: Sergey Tereschenko Date: Tue, 2 Jul 2019 19:54:06 +0300 Subject: [PATCH] Prepare 0.13.2 release --- CHANGELOG.txt | 6 ++++++ PKG-INFO | 2 +- modeltranslation/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 0e9eb720..d406a968 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,9 @@ +v0.13-2 +=========== +Date: 2019-07-01 + FIXED: Outdated formfield_for_dbfield signature (#510) + + v0.13-1 =========== Date: 2019-04-18 diff --git a/PKG-INFO b/PKG-INFO index f1d09a90..11a799f5 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.13-1 +Version: 0.13-2 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 93a7f2fd..3ee42831 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, 1, 'final', 0) +VERSION = (0, 13, 2, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'