From 65d38bbfdd014ff6e1e2965b68467254ac6c27b5 Mon Sep 17 00:00:00 2001 From: Ian Eaves Date: Mon, 14 Oct 2024 18:23:36 -0500 Subject: [PATCH] version-bump --- grai-server/app/pyproject.toml | 2 +- grai-server/app/the_guide/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/grai-server/app/pyproject.toml b/grai-server/app/pyproject.toml index 17650e99e..2fb84b9da 100644 --- a/grai-server/app/pyproject.toml +++ b/grai-server/app/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "the_guide" -version = "0.1.74" +version = "0.1.75" description = "" authors = ["Grai "] license = "Elastic-2.0" diff --git a/grai-server/app/the_guide/__init__.py b/grai-server/app/the_guide/__init__.py index 9a4227e99..505ac5ba3 100755 --- a/grai-server/app/the_guide/__init__.py +++ b/grai-server/app/the_guide/__init__.py @@ -2,6 +2,6 @@ # Django starts so that shared_task will use this app. from .celery import app as celery_app -__version__ = "0.1.72" +__version__ = "0.1.75" __all__ = ("celery_app", "__version__")