From 48127491217e4577e361f2e67a4ff66d4901bd40 Mon Sep 17 00:00:00 2001 From: Sergey Tereschenko Date: Fri, 10 Jul 2020 09:06:20 +0300 Subject: [PATCH] chore(release): 0.15.1 --- CHANGELOG.md | 7 +++++++ PKG-INFO | 2 +- modeltranslation/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05152dc..a8c25a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.15.1](https://github.com/deschler/django-modeltranslation/compare/v0.15.0...v0.15.1) (2020-07-10) + + +### Bug Fixes + +* **admin:** Fix custom widget initialization problem ([48e7f59](https://github.com/deschler/django-modeltranslation/commit/48e7f598955a09dc4130a0074cb953ecd05d1a01)) + ## [0.15.0](https://github.com/deschler/django-modeltranslation/compare/0.14.4...0.15.0) (2020-04-22) diff --git a/PKG-INFO b/PKG-INFO index 4aea4a2..43cc8ee 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.15.0 +Version: 0.15.1 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 100adea..4ba7930 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, 15, 0, 'final', 0) +VERSION = (0, 15, 1, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'