From c4ba6cebe77d1bdaa911921ae4268dc88ec1f47c Mon Sep 17 00:00:00 2001 From: Serg Tereshchenko Date: Mon, 31 May 2021 11:09:32 +0300 Subject: [PATCH] chore(release): 0.17.2 --- CHANGELOG.md | 8 ++++++++ PKG-INFO | 2 +- modeltranslation/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5f7360..5f2c70c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ 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.2](https://github.com/deschler/django-modeltranslation/compare/v0.17.1...v0.17.2) (2021-05-31) + + +### Bug Fixes + +* **docs:** Fixed legacy python 2 print statements ([10ec4ed](https://github.com/deschler/django-modeltranslation/commit/10ec4ed8694d949815ccf4ada679a1cb72f24675)) +* **MultilingualQuerySet:** Make _clone signature match default django _clone ([c65adb0](https://github.com/deschler/django-modeltranslation/commit/c65adb058d6c60c077138e5099342f31aac1690b)), closes [#483](https://github.com/deschler/django-modeltranslation/issues/483) + ### [0.17.1](https://github.com/deschler/django-modeltranslation/compare/v0.16.2...v0.17.1) (2021-04-15) diff --git a/PKG-INFO b/PKG-INFO index a0787b2..f0b9b4e 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.17.1 +Version: 0.17.2 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 2b244f9..6d423fe 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, 1, 'final', 0) +VERSION = (0, 17, 2, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'