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")