Skip to content

Commit

Permalink
Merge branch 'master' of github.com:seung-lab/MaterializationEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed Oct 16, 2024
2 parents d71052c + dd5612f commit 24fbf2b
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 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.34.3
current_version = 4.34.4
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Derrick Brittain, Forrest Collman, Sven Dorkenwald"

# The full version, including alpha/beta/rc tags
release = "4.34.3"
release = "4.34.4"


master_doc = "index"
Expand Down
2 changes: 1 addition & 1 deletion materializationengine/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.34.3"
__version__ = "4.34.4"
12 changes: 6 additions & 6 deletions materializationengine/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ def create_app(config_name: str = None):
app = configure_app(app)
# register blueprints

apibp = Blueprint("api", __name__, url_prefix="/materialize/api")
apibp = Blueprint("api", __name__, url_prefix="/materialize")

@apibp.route("/versions")
@apibp.route("/api/versions")
def versions():
return jsonify([2, 3]), 200

@apibp.route("/materialize/version")
@apibp.route("/version")
def version():
return jsonify(__version__), 200

Expand All @@ -75,9 +75,9 @@ def version():
api = Api(
apibp, title="Materialization Engine API", version=__version__, doc="/doc"
)
api.add_namespace(mat_bp, path="/v2")
api.add_namespace(client_bp, path="/v2")
api.add_namespace(client_bp2, path="/v3")
api.add_namespace(mat_bp, path="/api/v2")
api.add_namespace(client_bp, path="/api/v2")
api.add_namespace(client_bp2, path="/api/v3")

app.register_blueprint(apibp)
app.register_blueprint(views_bp)
Expand Down
2 changes: 1 addition & 1 deletion materializationengine/blueprints/client/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from materializationengine.blueprints.client.datastack import validate_datastack


__version__ = "4.34.3"
__version__ = "4.34.4"


authorizations = {
Expand Down
2 changes: 1 addition & 1 deletion materializationengine/blueprints/client/api2.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
from materializationengine.blueprints.client.utils import update_notice_text_warnings
from materializationengine.blueprints.client.utils import after_request

__version__ = "4.34.3"
__version__ = "4.34.4"


authorizations = {
Expand Down
2 changes: 1 addition & 1 deletion materializationengine/blueprints/materialize/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
)


__version__ = "4.34.3"
__version__ = "4.34.4"


bulk_upload_parser = reqparse.RequestParser()
Expand Down
2 changes: 1 addition & 1 deletion materializationengine/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
import caveclient


__version__ = "4.34.3"
__version__ = "4.34.4"

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

Expand Down

0 comments on commit 24fbf2b

Please sign in to comment.