From 256b1ebd3ca0db96b891d80e04905e162cd6f51e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Kr=C3=BCger=20Svensson?= Date: Thu, 3 Dec 2020 22:01:35 +0100 Subject: [PATCH] 3.2.0 version release --- CHANGELOG.rst | 4 ++-- django_guid/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 31d0c3c..a9f28be 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Changelog ========= -`3.1.1`_ - 04.12.2020 +`3.2.0`_ - 04.12.2020 --------------------- **Features** @@ -229,6 +229,6 @@ see the `upgrading docs`_. .. _upgrading docs: https://django-guid.readthedocs.io/en/latest/upgrading.html .. _3.0.1: https://github.com/snok/django-guid/compare/3.0.0...3.0.1 .. _3.1.0: https://github.com/snok/django-guid/compare/3.0.1...3.1.0 -.. _3.1.1: https://github.com/snok/django-guid/compare/3.1.0...3.1.1 +.. _3.2.0: https://github.com/snok/django-guid/compare/3.1.0...3.2.0 .. _Celery: https://docs.celeryproject.org/en/stable/ diff --git a/django_guid/__init__.py b/django_guid/__init__.py index f31bcb4..0216303 100644 --- a/django_guid/__init__.py +++ b/django_guid/__init__.py @@ -1,4 +1,4 @@ from django_guid.api import clear_guid, get_guid, set_guid # noqa F401 -__version__ = '3.1.1' +__version__ = '3.2.0' default_app_config = 'django_guid.apps.DjangoGuidConfig' diff --git a/pyproject.toml b/pyproject.toml index e9b1ada..436f215 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-guid" -version = "3.1.1" # Remember to also change __init__.py version +version = "3.2.0" # Remember to also change __init__.py version description = "Middleware that enables single request-response cycle tracing by injecting a unique ID into project logs" authors = ["Jonas Krüger Svensson "] maintainers = ["Sondre Lillebø Gundersen "]