From 4d80d58a12f9f09c0ed34d40c3418ed1a77938c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Kr=C3=BCger=20Svensson?= Date: Thu, 25 Apr 2024 17:46:33 +0200 Subject: [PATCH] chore: version bump --- django_guid/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/django_guid/__init__.py b/django_guid/__init__.py index e6357f8..5fce95a 100644 --- a/django_guid/__init__.py +++ b/django_guid/__init__.py @@ -2,7 +2,7 @@ from django_guid.api import clear_guid, get_guid, set_guid # noqa F401 -__version__ = '3.4.0' +__version__ = '3.5.0' if django.VERSION < (3, 2): default_app_config = 'django_guid.apps.DjangoGuidConfig' diff --git a/pyproject.toml b/pyproject.toml index 05581ea..bafdd7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-guid" -version = "3.4.0" # Remember to also change __init__.py version +version = "3.5.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 "]