From 3cad653a8c74cf6cf3409d4e81ffad8b50f751a5 Mon Sep 17 00:00:00 2001 From: Sergey Tereschenko Date: Wed, 22 Apr 2020 18:08:53 +0300 Subject: [PATCH] chore(release): 0.15.0 --- CHANGELOG.md | 12 ++++++++++++ PKG-INFO | 2 +- modeltranslation/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1757eb73..42f1b4c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ 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.15.0](https://github.com/deschler/django-modeltranslation/compare/0.14.4...0.15.0) (2020-04-22) + + +### Features + +* Use poetry as venv manager ([a5b402c](https://github.com/deschler/django-modeltranslation/commit/a5b402c51673a78a1aa160247746695070e08a2f)) +* Drop old python versions (<3.6) + +### Bug Fixes + +* add NewMultilingualManager __eq__() ([205a8f6](https://github.com/deschler/django-modeltranslation/commit/205a8f6c2f411b8b20235bbf89b88d3781919cbd)) + ## 0.14.0 (2019-11-14) diff --git a/PKG-INFO b/PKG-INFO index bb6da4b9..4aea4a2a 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.14-4 +Version: 0.15.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 ae73ebc4..100adeae 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, 14, 4, 'final', 0) +VERSION = (0, 15, 0, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'