Skip to content

Commit

Permalink
Bump version: 4.14.0 → 4.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed Mar 6, 2024
1 parent a7481ba commit 3ff0d38
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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 = 4.14.0
current_version = 4.14.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion annotationengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import logging
from datetime import date, datetime

__version__ = "4.14.0"
__version__ = "4.14.1"


db = SQLAlchemy(model_class=Base)
Expand Down
2 changes: 1 addition & 1 deletion annotationengine/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

from .api_examples import synapse_table_example, synapse_table_update_example

__version__ = "4.14.0"
__version__ = "4.14.1"

authorizations = {
"apikey": {"type": "apiKey", "in": "query", "name": "middle_auth_token"}
Expand Down
2 changes: 1 addition & 1 deletion annotationengine/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import numpy as np
import os

__version__ = "4.14.0"
__version__ = "4.14.1"

views_bp = Blueprint("views", __name__, url_prefix="/annotation/views")

Expand Down

0 comments on commit 3ff0d38

Please sign in to comment.