chore(release): 0.15.1

This commit is contained in:
Sergey Tereschenko 2020-07-10 09:06:20 +03:00
parent 48e7f59895
commit 4812749121
3 changed files with 9 additions and 2 deletions

View file

@ -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)

View file

@ -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,

View file

@ -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'