From 740a1fc78f34c4fbc69efe274743f3a80f72fb0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?c=C4=83t=C4=83lin?= Date: Thu, 6 Mar 2025 18:23:33 +0100 Subject: [PATCH] fix: correctly execute `make serve` --- CHANGELOG | 24 ++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index ea9c308..8bb48b3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,30 @@ All notable changes to this project will be documented in this file. +## [0.3.0] - 2025-03-06 + +### 🚀 Features + +- Remove !h and make the bot have an in-memory dict of greeted users instead of using the backoff service +- Add UpdateVersionAction +- Add retry capabilities to the bot + +## [0.2.9] - 2025-02-24 + +### 🐛 Bug Fixes + +- Update token refresh to use object attributes instead of dict access + +## [0.2.8] - 2025-02-24 + +### 🐛 Bug Fixes + +- Retrieve user profile after refreshing twitch creds + +### ⚙️ Miscellaneous Tasks + +- Update to v0.2.6 + ## [0.2.7] - 2025-02-13 ### 🐛 Bug Fixes diff --git a/Makefile b/Makefile index df06a40..b17fc9f 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ tests: uv run coverage xml serve: - uv run python -m src.apps.httpapi.litestar.main + uv run uvicorn src.apps.httpapi.litestar.main:app build: docker build . -t git.roboces.dev/catalin/$(PROJECT_NAME):$(PROJECT_TAG) --target $(PROJECT_TARGET)