diff --git a/lib/api.py b/lib/api.py
index 7bbdea8..91afdb6 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.1.0",
+ version="2.2.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 39b0b19..a563567 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.1.0",
+ service_version="2.2.0",
deployment_environment="production",
)
from lib.api import ( # pylint: disable=import-outside-toplevel
diff --git a/pyproject.toml b/pyproject.toml
index 78929dd..c3dbcae 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,7 +7,7 @@ dependencies = {file = ["requirements.txt"]}
[project]
name = "Infinity-API"
-version = "2.1.0"
+version = "2.2.0"
description = "RESTFULL open API for rocketpy"
dynamic = ["dependencies"]
requires-python = ">=3.12"