diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1a5d942d..0d84fa53 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.31.1 +current_version = 4.31.2 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 505fbe78..53463792 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = "Derrick Brittain, Forrest Collman, Sven Dorkenwald" # The full version, including alpha/beta/rc tags -release = "4.31.1" +release = "4.31.2" master_doc = "index" diff --git a/materializationengine/__init__.py b/materializationengine/__init__.py index 24c0e5fe..12780e8f 100644 --- a/materializationengine/__init__.py +++ b/materializationengine/__init__.py @@ -1 +1 @@ -__version__ = "4.31.1" +__version__ = "4.31.2" diff --git a/materializationengine/blueprints/client/api.py b/materializationengine/blueprints/client/api.py index b052ba3d..ec5b23bf 100644 --- a/materializationengine/blueprints/client/api.py +++ b/materializationengine/blueprints/client/api.py @@ -30,7 +30,7 @@ from materializationengine.blueprints.client.datastack import validate_datastack -__version__ = "4.31.1" +__version__ = "4.31.2" authorizations = { diff --git a/materializationengine/blueprints/client/api2.py b/materializationengine/blueprints/client/api2.py index 7bec3f30..6bbb97a8 100644 --- a/materializationengine/blueprints/client/api2.py +++ b/materializationengine/blueprints/client/api2.py @@ -63,7 +63,7 @@ from materializationengine.blueprints.client.utils import update_notice_text_warnings from materializationengine.blueprints.client.utils import after_request -__version__ = "4.31.1" +__version__ = "4.31.2" authorizations = { diff --git a/materializationengine/blueprints/materialize/api.py b/materializationengine/blueprints/materialize/api.py index a9d288b7..fb61de1c 100644 --- a/materializationengine/blueprints/materialize/api.py +++ b/materializationengine/blueprints/materialize/api.py @@ -32,7 +32,7 @@ ) -__version__ = "4.31.1" +__version__ = "4.31.2" bulk_upload_parser = reqparse.RequestParser() diff --git a/materializationengine/views.py b/materializationengine/views.py index 3141eb52..1e02dfb0 100644 --- a/materializationengine/views.py +++ b/materializationengine/views.py @@ -55,7 +55,7 @@ import caveclient -__version__ = "4.31.1" +__version__ = "4.31.2" views_bp = Blueprint("views", __name__, url_prefix="/materialize/views")