diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b554341f..d10bec9b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.35.1 +current_version = 4.35.2 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 4406ec1d..ff1af1a4 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.35.1" +release = "4.35.2" master_doc = "index" diff --git a/materializationengine/__init__.py b/materializationengine/__init__.py index fecc7adc..f5273fdc 100644 --- a/materializationengine/__init__.py +++ b/materializationengine/__init__.py @@ -1 +1 @@ -__version__ = "4.35.1" +__version__ = "4.35.2" diff --git a/materializationengine/blueprints/client/api.py b/materializationengine/blueprints/client/api.py index 5ca4c883..c01e650e 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.35.1" +__version__ = "4.35.2" authorizations = { diff --git a/materializationengine/blueprints/client/api2.py b/materializationengine/blueprints/client/api2.py index 6b484789..606d8390 100644 --- a/materializationengine/blueprints/client/api2.py +++ b/materializationengine/blueprints/client/api2.py @@ -64,7 +64,7 @@ from materializationengine.blueprints.client.utils import update_notice_text_warnings from materializationengine.blueprints.client.utils import after_request -__version__ = "4.35.1" +__version__ = "4.35.2" authorizations = { diff --git a/materializationengine/blueprints/materialize/api.py b/materializationengine/blueprints/materialize/api.py index de1e653c..44c51613 100644 --- a/materializationengine/blueprints/materialize/api.py +++ b/materializationengine/blueprints/materialize/api.py @@ -36,7 +36,7 @@ ) -__version__ = "4.35.1" +__version__ = "4.35.2" bulk_upload_parser = reqparse.RequestParser() diff --git a/materializationengine/views.py b/materializationengine/views.py index ad4c86bb..ea7b84e0 100644 --- a/materializationengine/views.py +++ b/materializationengine/views.py @@ -56,7 +56,7 @@ import caveclient -__version__ = "4.35.1" +__version__ = "4.35.2" views_bp = Blueprint("views", __name__, url_prefix="/materialize/views")