Skip to content

Commit

Permalink
Bump version: 5.10.1 → 5.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed Mar 6, 2024
1 parent e4951b4 commit 065cf69
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.10.1
current_version = 5.10.2
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 @@ -52,7 +52,7 @@
from emannotationschemas.errors import UnknownAnnotationTypeException
from emannotationschemas.flatten import create_flattened_schema

__version__ = "5.10.1"
__version__ = "5.10.2"

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 @@ -8,7 +8,7 @@
from emannotationschemas.utils import get_instance_folder_path
from emannotationschemas.views import views_bp

__version__ = "5.10.1"
__version__ = "5.10.2"


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.10.1"
__version__ = "5.10.2"

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.10.1"
__version__ = "5.10.2"


views_bp = Blueprint("views", __name__, url_prefix="/schema/views")
Expand Down

0 comments on commit 065cf69

Please sign in to comment.