diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cfd59f57..294c8700 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.9.2 +current_version = 2.9.3 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 92867c60..026d06f5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ author = "Derrick Brittain, Forrest Collman, Sven Dorkenwald" # The full version, including alpha/beta/rc tags -release = "2.9.2" +release = "2.9.3" master_doc = 'index' diff --git a/materializationengine/__init__.py b/materializationengine/__init__.py index 4f1e6b1b..a78f213c 100644 --- a/materializationengine/__init__.py +++ b/materializationengine/__init__.py @@ -1 +1 @@ -__version__ = "2.9.2" +__version__ = "2.9.3" diff --git a/materializationengine/blueprints/client/api.py b/materializationengine/blueprints/client/api.py index b093454f..4ceda69a 100644 --- a/materializationengine/blueprints/client/api.py +++ b/materializationengine/blueprints/client/api.py @@ -42,7 +42,7 @@ import time -__version__ = "2.9.2" +__version__ = "2.9.3" authorizations = { diff --git a/materializationengine/blueprints/materialize/api.py b/materializationengine/blueprints/materialize/api.py index 829eefd3..d6f22f18 100644 --- a/materializationengine/blueprints/materialize/api.py +++ b/materializationengine/blueprints/materialize/api.py @@ -18,7 +18,7 @@ from sqlalchemy.exc import NoSuchTableError -__version__ = "2.9.2" +__version__ = "2.9.3" bulk_upload_parser = reqparse.RequestParser() diff --git a/materializationengine/views.py b/materializationengine/views.py index 52ed2cc0..f0eb4f11 100644 --- a/materializationengine/views.py +++ b/materializationengine/views.py @@ -27,7 +27,7 @@ ) -__version__ = "2.9.2" +__version__ = "2.9.3" views_bp = Blueprint("views", __name__, url_prefix="/materialize/views")