From a36daf454ba1b9eac5b33a19395815e3978253eb Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Wed, 6 Mar 2024 07:16:21 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=205.10.0=20=E2=86=92=205.10.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- emannotationschemas/__init__.py | 2 +- emannotationschemas/app.py | 2 +- emannotationschemas/blueprint_app.py | 2 +- emannotationschemas/views.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ee55a43..0bd0e8f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.10.0 +current_version = 5.10.1 commit = True tag = True diff --git a/emannotationschemas/__init__.py b/emannotationschemas/__init__.py index 3153014..8468e17 100644 --- a/emannotationschemas/__init__.py +++ b/emannotationschemas/__init__.py @@ -52,7 +52,7 @@ from emannotationschemas.errors import UnknownAnnotationTypeException from emannotationschemas.flatten import create_flattened_schema -__version__ = "5.10.0" +__version__ = "5.10.1" type_mapping = { "synapse": SynapseSchema, diff --git a/emannotationschemas/app.py b/emannotationschemas/app.py index b8ad7d3..bd34038 100644 --- a/emannotationschemas/app.py +++ b/emannotationschemas/app.py @@ -8,7 +8,7 @@ from emannotationschemas.utils import get_instance_folder_path from emannotationschemas.views import views_bp -__version__ = "5.10.0" +__version__ = "5.10.1" def create_app(test_config=None): diff --git a/emannotationschemas/blueprint_app.py b/emannotationschemas/blueprint_app.py index 7732814..419eb1a 100644 --- a/emannotationschemas/blueprint_app.py +++ b/emannotationschemas/blueprint_app.py @@ -5,7 +5,7 @@ from emannotationschemas import get_schema, get_types from emannotationschemas.errors import UnknownAnnotationTypeException -__version__ = "5.10.0" +__version__ = "5.10.1" authorizations = { "apikey": {"type": "apiKey", "in": "query", "name": "middle_auth_token"} diff --git a/emannotationschemas/views.py b/emannotationschemas/views.py index f105b9f..976a79f 100644 --- a/emannotationschemas/views.py +++ b/emannotationschemas/views.py @@ -4,7 +4,7 @@ from emannotationschemas import get_flat_schema, get_schema, get_types -__version__ = "5.10.0" +__version__ = "5.10.1" views_bp = Blueprint("views", __name__, url_prefix="/schema/views")