Skip to content

Commit

Permalink
Bump version: 4.15.2 → 4.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed May 13, 2024
1 parent f244e0b commit ea1d5a8
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.15.2
current_version = 4.16.0
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.15.2"
__version__ = "4.16.0"


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 @@ -39,7 +39,7 @@

from .api_examples import synapse_table_example, synapse_table_update_example

__version__ = "4.15.2"
__version__ = "4.16.0"

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.15.2"
__version__ = "4.16.0"

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

Expand Down

0 comments on commit ea1d5a8

Please sign in to comment.