From ce06303c5f3707cc21b110b500d573c7d1733b44 Mon Sep 17 00:00:00 2001 From: GabrielBarberini Date: Sat, 28 Sep 2024 18:49:42 -0300 Subject: [PATCH] bumps project version --- lib/api.py | 2 +- lib/settings/gunicorn.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/api.py b/lib/api.py index 3716ddd..7bbdea8 100644 --- a/lib/api.py +++ b/lib/api.py @@ -46,7 +46,7 @@ def custom_openapi(): return app.openapi_schema openapi_schema = get_openapi( title="RocketPy Infinity-API", - version="2.0.0", + version="2.1.0", description=( "

RocketPy Infinity-API is a RESTful Open API for RocketPy, a rocket flight simulator.

" "
" diff --git a/lib/settings/gunicorn.py b/lib/settings/gunicorn.py index 34e398c..39b0b19 100644 --- a/lib/settings/gunicorn.py +++ b/lib/settings/gunicorn.py @@ -7,7 +7,7 @@ def post_fork(server, worker): # pylint: disable=unused-argument uptrace.configure_opentelemetry( dsn=Secrets.get_secret("UPTRACE_DSN"), service_name="infinity-api", - service_version="2.0.0", + service_version="2.1.0", deployment_environment="production", ) from lib.api import ( # pylint: disable=import-outside-toplevel diff --git a/pyproject.toml b/pyproject.toml index 1d58e9b..78929dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ dependencies = {file = ["requirements.txt"]} [project] name = "Infinity-API" -version = "2.0.0" +version = "2.1.0" description = "RESTFULL open API for rocketpy" dynamic = ["dependencies"] requires-python = ">=3.12"