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)