diff --git a/CHANGELOG.md b/CHANGELOG.md index def5390b..e6ff2dc2 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.16.1](https://github.com/deschler/django-modeltranslation/compare/v0.16.0...v0.16.1) (2020-11-23) + + +### Bug Fixes + +* missing jquery operator ([7c750de](https://github.com/deschler/django-modeltranslation/commit/7c750def728e163d5bde88fedd1124bd7e9a8122)) + ## [0.16.0](https://github.com/deschler/django-modeltranslation/compare/v0.15.2...v0.16.0) (2020-10-12) diff --git a/PKG-INFO b/PKG-INFO index 5273f228..18cf9427 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.16.0 +Version: 0.16.1 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 4ac0d481..02a963cf 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, 16, 0, 'final', 0) +VERSION = (0, 16, 1, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'