From 8daf316319bfc2318954faaabe15894a09a890a8 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 2 Jul 2025 01:37:09 +0300 Subject: [PATCH] Features: 1) Add healthcheck for celery worker service in docker-compose; 2) Add dependent services with healthcheck conditions for `beat`. Fixes: n/a; Extra: n/a; --- evibes/settings/base.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/evibes/settings/base.py b/evibes/settings/base.py index 38092b18..30e0288d 100644 --- a/evibes/settings/base.py +++ b/evibes/settings/base.py @@ -2,7 +2,7 @@ import logging from os import getenv from pathlib import Path -EVIBES_VERSION = "2.8.10" +EVIBES_VERSION = "2.9.0" BASE_DIR = Path(__file__).resolve().parent.parent.parent diff --git a/pyproject.toml b/pyproject.toml index ab2042e8..ce5ae5da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "eVibes" -version = "2.8.10" +version = "2.9.0" description = "eVibes is an open-source eCommerce backend service built with Django. It’s designed for flexibility, making it ideal for various use cases and learning Django skills. The project is easy to customize, allowing for straightforward editing and extension." authors = ["fureunoir "] readme = "README.md"