diff --git a/CHANGELOG.md b/CHANGELOG.md index 490df7a..6ded5ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.7.0 (2024-05-09) + +### Feat + +- add /fastest-sectors path + ## 0.6.1 (2024-04-19) ### Fix diff --git a/VERSION b/VERSION index 7ceb040..bcaffe1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.1 \ No newline at end of file +0.7.0 \ No newline at end of file diff --git a/app/__init__.py b/app/__init__.py index e6c7550..daea784 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -5,7 +5,7 @@ from fastf1.ergast import Ergast -__version__ = "0.6.1" +__version__ = "0.7.0" # Load environment variables from .env file diff --git a/pyproject.toml b/pyproject.toml index 02b4f1c..2012bc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api" #-->> Metadata <<------------------------------------------ [tool.poetry] name = "rearwing" -version = "0.6.1" +version = "0.7.0" description = "Slick Telemetry backend written in python with fastapi" authors = ["Slick Telemetry "] readme = "README.md" @@ -79,7 +79,7 @@ line-length = 120 target-version = ["py312"] [tool.commitizen] -version = "0.6.1" +version = "0.7.0" version_files = [ "app/__init__.py:__version__", "pyproject.toml:version",