Skip to content

Commit

Permalink
Bump version: 5.12.0 → 5.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed May 9, 2024
1 parent 189aea7 commit a15ae3a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.12.0
current_version = 5.13.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion emannotationschemas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion emannotationschemas/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion emannotationschemas/blueprint_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
2 changes: 1 addition & 1 deletion emannotationschemas/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a15ae3a

Please sign in to comment.