diff --git a/CHANGELOG.md b/CHANGELOG.md index a8c25a8..5db20ac 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.2](https://github.com/deschler/django-modeltranslation/compare/v0.15.1...v0.15.2) (2020-09-08) + + +### Features + +* Adds a language option to the update_translation_fields commands ([ac91740](https://github.com/deschler/django-modeltranslation/commit/ac91740a5c3d718b8695514da8a0dd7b90aa1ee6)), closes [#563](https://github.com/deschler/django-modeltranslation/issues/563) + ### [0.15.1](https://github.com/deschler/django-modeltranslation/compare/v0.15.0...v0.15.1) (2020-07-10) diff --git a/PKG-INFO b/PKG-INFO index 43cc8ee..0ebbf2e 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.15.1 +Version: 0.15.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 4ba7930..18f3dba 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, 1, 'final', 0) +VERSION = (0, 15, 2, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'