From 28f55c5f35f071345e83275e111a7b6e85c7f7ff Mon Sep 17 00:00:00 2001 From: Evan Morris Date: Thu, 1 Aug 2024 11:26:17 -0400 Subject: [PATCH] bumping plater version --- PLATER/services/util/api_utils.py | 2 +- PLATER/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PLATER/services/util/api_utils.py b/PLATER/services/util/api_utils.py index 6ae234a..afc1a0b 100644 --- a/PLATER/services/util/api_utils.py +++ b/PLATER/services/util/api_utils.py @@ -25,7 +25,7 @@ def get_graph_interface(): def construct_open_api_schema(app, trapi_version, prefix="", plater_title='Plater API'): - plater_version = config.get('PLATER_VERSION', 'v2.0.2') + plater_version = config.get('PLATER_VERSION', 'v2.0.3') server_url = config.get('PUBLIC_URL', '') if app.openapi_schema: return app.openapi_schema diff --git a/PLATER/setup.py b/PLATER/setup.py index 561bab3..f4a7eb5 100644 --- a/PLATER/setup.py +++ b/PLATER/setup.py @@ -3,6 +3,6 @@ setup( name='PLATER', - version='v2.0.2', + version='v2.0.3', packages=find_packages(), )