diff --git a/CHANGELOG.md b/CHANGELOG.md index a5266d7..2e37eb1 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.7](https://github.com/deschler/django-modeltranslation/compare/v0.17.6...v0.17.7) (2022-05-04) + + +### Bug Fixes + +* Do not include annotation fields when selecting specific fields ([#634](https://github.com/deschler/django-modeltranslation/issues/634)) ([defc37c](https://github.com/deschler/django-modeltranslation/commit/defc37c7a539dff1e4af96e7d13856519befe585)) + ### [0.17.6](https://github.com/deschler/django-modeltranslation/compare/v0.17.5...v0.17.6) (2022-04-29) diff --git a/PKG-INFO b/PKG-INFO index f838c50..588e8fd 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.17.6 +Version: 0.17.7 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 2d8ad43..61f0e78 100644 --- a/modeltranslation/__init__.py +++ b/modeltranslation/__init__.py @@ -4,7 +4,7 @@ Version code adopted from Django development version. https://github.com/django/django """ -VERSION = (0, 17, 6, 'final', 0) +VERSION = (0, 17, 7, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'