From c7e3cd64d938b1738899678d482e1cc9f34a38be Mon Sep 17 00:00:00 2001 From: Serg Tereshchenko Date: Mon, 12 Oct 2020 19:10:51 +0300 Subject: [PATCH] chore(release): 0.16.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ PKG-INFO | 2 +- modeltranslation/__init__.py | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5db20ac..def5390 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ 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.16.0](https://github.com/deschler/django-modeltranslation/compare/v0.15.2...v0.16.0) (2020-10-12) + + +### ⚠ BREAKING CHANGES + +* **js:** It's 2020 already, drop backward compatibility with jquery-ui 1.10. + +### Features + +* **tabbed-translation-fields:** Make tab with errors visible by default. ([4c2e284](https://github.com/deschler/django-modeltranslation/commit/4c2e284d871044a443817aabfbe3c956799ffe06)) + + +### Bug Fixes + +* Fix error detection; add red dot for tab with errors. ([9a93cf6](https://github.com/deschler/django-modeltranslation/commit/9a93cf6b4d4ec24e754159f71cf9d9eda811673e)) +* **dev:** Fix install in editable mode. ([aaa2dcf](https://github.com/deschler/django-modeltranslation/commit/aaa2dcf5987e19c2da8460bc73a0681a291f0dc5)) + + +* **js:** It's 2020 already, drop backward compatibility with jquery-ui 1.10. ([d8f432a](https://github.com/deschler/django-modeltranslation/commit/d8f432a5cadd60871101081c87569e3d390474e6)) + ### [0.15.2](https://github.com/deschler/django-modeltranslation/compare/v0.15.1...v0.15.2) (2020-09-08) diff --git a/PKG-INFO b/PKG-INFO index 0ebbf2e..5273f22 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.15.2 +Version: 0.16.0 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 18f3dba..4ac0d48 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, 2, 'final', 0) +VERSION = (0, 16, 0, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'