From ef346016226488a69fd3cdf3aa9308830aa419ac Mon Sep 17 00:00:00 2001 From: Sergey Tereschenko Date: Thu, 14 Nov 2019 12:11:56 +0200 Subject: [PATCH] Prepare 0.14.0 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 bb6eeee..0c71de0 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,9 @@ +v0.14-0 +=========== +Date: 2019-11-14 + FIXED: Django 3.0 support (#521) + FIXED: Tests when django files not writable (#527) + v0.13-3 =========== Date: 2019-07-22 diff --git a/PKG-INFO b/PKG-INFO index fab98ae..1a2ed01 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.13-3 +Version: 0.14-0 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 d331cc3..53d703e 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, 3, 'final', 0) +VERSION = (0, 14, 0, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'