diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3efc65f..d6e1a59 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.10.4 +current_version = 5.11.0 commit = True tag = True diff --git a/emannotationschemas/__init__.py b/emannotationschemas/__init__.py index 600dc8a..2ef6e7b 100644 --- a/emannotationschemas/__init__.py +++ b/emannotationschemas/__init__.py @@ -57,7 +57,7 @@ from emannotationschemas.errors import UnknownAnnotationTypeException from emannotationschemas.flatten import create_flattened_schema -__version__ = "5.10.4" +__version__ = "5.11.0" type_mapping = { "synapse": SynapseSchema, diff --git a/emannotationschemas/app.py b/emannotationschemas/app.py index e219c89..4e02ee9 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.4" +__version__ = "5.11.0" def create_app(test_config=None): diff --git a/emannotationschemas/blueprint_app.py b/emannotationschemas/blueprint_app.py index 8dfec69..97090b8 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.4" +__version__ = "5.11.0" authorizations = { "apikey": {"type": "apiKey", "in": "query", "name": "middle_auth_token"} diff --git a/emannotationschemas/views.py b/emannotationschemas/views.py index 7aedf03..fc89462 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.4" +__version__ = "5.11.0" views_bp = Blueprint("views", __name__, url_prefix="/schema/views")