diff --git a/CHANGELOG.md b/CHANGELOG.md index 3de3751..421a5da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## 0.2.0 (2024-02-12) + +### Feat + +- added timing middleware +- BACK-32 added /next-event path +- BACK-26 supabase self-host initial setup +- **results**: BACK-14 session is optional with default as race +- BACK-13 /schedule now provides the year + +### Fix + +- **schedule**: BACK-24 exclude testing events +- BACK-22 added missing favicon.ico +- **results**: BACK-19 don't fetch laps + +### Refactor + +- better organized docker installation + ## 0.1.0 (2024-01-28) ### Feat diff --git a/VERSION b/VERSION index 6c6aa7c..341cf11 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 \ No newline at end of file +0.2.0 \ No newline at end of file diff --git a/app/__init__.py b/app/__init__.py index 3dc1f76..d3ec452 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml index 0b8a857..2b3ca0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "backend" -version = "0.1.0" +version = "0.2.0" description = "Slick Telemetry backend written in python" authors = ["Slick Telemetry "] readme = "README.md" @@ -28,7 +28,7 @@ build-backend = "poetry.core.masonry.api" profile = "black" [tool.commitizen] -version = "0.1.0" +version = "0.2.0" version_files = [ "app/__init__.py:__version__", "pyproject.toml:version",