chore(release): 0.17.4

This commit is contained in:
Serg Tereshchenko 2022-01-28 16:26:58 +02:00
parent 391e2b33b8
commit 97534b9973
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.17.4](https://github.com/deschler/django-modeltranslation/compare/v0.17.3...v0.17.4) (2022-01-28)
### Features
* semi-configurable selection of elements to generate tabs in admin ([#607](https://github.com/deschler/django-modeltranslation/issues/607)) ([eb05201](https://github.com/deschler/django-modeltranslation/commit/eb052018bf930146d667be3e47f26d69afb3c2c3))
### [0.17.3](https://github.com/deschler/django-modeltranslation/compare/v0.17.2...v0.17.3) (2021-06-28)
### [0.17.2](https://github.com/deschler/django-modeltranslation/compare/v0.17.1...v0.17.2) (2021-05-31)

View file

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: django-modeltranslation
Version: 0.17.3
Version: 0.17.4
Summary: Translates Django models using a registration approach.
Home-page: https://github.com/deschler/django-modeltranslation
Author: Peter Eschler,

View file

@ -5,7 +5,7 @@ https://github.com/django/django
"""
import django
VERSION = (0, 17, 3, 'final', 0)
VERSION = (0, 17, 4, 'final', 0)
if django.VERSION < (3, 2):
default_app_config = 'modeltranslation.apps.ModeltranslationConfig'