From a15ae3ae3c96975a2cd008b1afbe55d5e748e738 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Thu, 9 May 2024 16:01:47 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=205.12.0=20=E2=86=92=205.13.0?= 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 4b838df..b13e80d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.12.0 +current_version = 5.13.0 commit = True tag = True diff --git a/emannotationschemas/__init__.py b/emannotationschemas/__init__.py index b7d69e1..baef4fa 100644 --- a/emannotationschemas/__init__.py +++ b/emannotationschemas/__init__.py @@ -59,7 +59,7 @@ from emannotationschemas.errors import UnknownAnnotationTypeException from emannotationschemas.flatten import create_flattened_schema -__version__ = "5.12.0" +__version__ = "5.13.0" type_mapping = { "synapse": SynapseSchema, diff --git a/emannotationschemas/app.py b/emannotationschemas/app.py index 1a5b3c9..647e071 100644 --- a/emannotationschemas/app.py +++ b/emannotationschemas/app.py @@ -9,7 +9,7 @@ from emannotationschemas.utils import get_instance_folder_path from emannotationschemas.views import views_bp -__version__ = "5.12.0" +__version__ = "5.13.0" def create_app(test_config=None): diff --git a/emannotationschemas/blueprint_app.py b/emannotationschemas/blueprint_app.py index 79f7e8b..9378d3d 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.12.0" +__version__ = "5.13.0" authorizations = { "apikey": {"type": "apiKey", "in": "query", "name": "middle_auth_token"} diff --git a/emannotationschemas/views.py b/emannotationschemas/views.py index 0dfdada..74e2696 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.12.0" +__version__ = "5.13.0" views_bp = Blueprint("views", __name__, url_prefix="/schema/views")