diff --git a/CHANGELOG.md b/CHANGELOG.md index 08a9914..e5f7360 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.1](https://github.com/deschler/django-modeltranslation/compare/v0.16.2...v0.17.1) (2021-04-15) + + +### Bug Fixes + +* Fixed .latest() ORM method with django 3.2 ([eaf613b](https://github.com/deschler/django-modeltranslation/commit/eaf613be1733314ad3b639e1702b0f7423af7899)), closes [#591](https://github.com/deschler/django-modeltranslation/issues/591) + ## [0.17.0](https://github.com/deschler/django-modeltranslation/compare/v0.16.2...v0.17.0) (2021-04-15) ### Features diff --git a/PKG-INFO b/PKG-INFO index 2f1150d..a0787b2 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.17.0 +Version: 0.17.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 e8c9970..2b244f9 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, 17, 0, 'final', 0) +VERSION = (0, 17, 1, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'