From f32b78d7497929b313bd5e8df6be361e5346a5d4 Mon Sep 17 00:00:00 2001 From: Evan Morris Date: Tue, 6 Aug 2024 14:26:51 -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 1a1370e..3280d78 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.4') + plater_version = config.get('PLATER_VERSION', 'v2.0.5') 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 f29cee4..da22539 100644 --- a/PLATER/setup.py +++ b/PLATER/setup.py @@ -3,6 +3,6 @@ setup( name='PLATER', - version='v2.0.4', + version='v2.0.5', packages=find_packages(), )