From 740608c2a76400c9b159cf4aa6777212e7713d13 Mon Sep 17 00:00:00 2001 From: Justin Mitchel Date: Thu, 2 Jan 2025 16:31:02 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.6=20=E2=86=92=200.0.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- src/django_qstash/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9fb4d04..14cb346 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.6 +current_version = 0.0.7 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+) diff --git a/pyproject.toml b/pyproject.toml index 297369e..4698e6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ requires = [ [project] name = "django-qstash" -version = "0.0.6" +version = "0.0.7" description = "A drop-in replacement for Celery's shared_task with Upstash QStash." readme = "README.md" license = { file = "LICENSE" } diff --git a/src/django_qstash/__init__.py b/src/django_qstash/__init__.py index b82d36a..9c9968f 100644 --- a/src/django_qstash/__init__.py +++ b/src/django_qstash/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.0.6" +__version__ = "0.0.7" from .tasks import shared_task