From 97534b99737c7fcd7b27208f8242943fad2e84b3 Mon Sep 17 00:00:00 2001 From: Serg Tereshchenko Date: Fri, 28 Jan 2022 16:26:58 +0200 Subject: [PATCH] chore(release): 0.17.4 --- 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 4ff546c..86c97cc 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.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) diff --git a/PKG-INFO b/PKG-INFO index be5bae5..06e6cc3 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -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, diff --git a/modeltranslation/__init__.py b/modeltranslation/__init__.py index b444b35..1377b41 100644 --- a/modeltranslation/__init__.py +++ b/modeltranslation/__init__.py @@ -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'