diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 069014d2..e8938f0a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.29.1 +current_version = 4.29.2 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 42d79a4e..da0b9ada 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.29.1" +release = "4.29.2" master_doc = "index" diff --git a/materializationengine/__init__.py b/materializationengine/__init__.py index 8480a1a7..d3f40e52 100644 --- a/materializationengine/__init__.py +++ b/materializationengine/__init__.py @@ -1 +1 @@ -__version__ = "4.29.1" +__version__ = "4.29.2" diff --git a/materializationengine/blueprints/client/api.py b/materializationengine/blueprints/client/api.py index 7c800945..5439e281 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.29.1" +__version__ = "4.29.2" authorizations = { diff --git a/materializationengine/blueprints/client/api2.py b/materializationengine/blueprints/client/api2.py index 3492392c..a01bd6cd 100644 --- a/materializationengine/blueprints/client/api2.py +++ b/materializationengine/blueprints/client/api2.py @@ -61,7 +61,7 @@ from materializationengine.blueprints.client.utils import update_notice_text_warnings from materializationengine.blueprints.client.utils import after_request -__version__ = "4.29.1" +__version__ = "4.29.2" authorizations = { diff --git a/materializationengine/blueprints/materialize/api.py b/materializationengine/blueprints/materialize/api.py index 63fcb229..a1c1edec 100644 --- a/materializationengine/blueprints/materialize/api.py +++ b/materializationengine/blueprints/materialize/api.py @@ -32,7 +32,7 @@ ) -__version__ = "4.29.1" +__version__ = "4.29.2" bulk_upload_parser = reqparse.RequestParser() diff --git a/materializationengine/views.py b/materializationengine/views.py index f5f6c9d9..19eb8b3d 100644 --- a/materializationengine/views.py +++ b/materializationengine/views.py @@ -55,7 +55,7 @@ import caveclient -__version__ = "4.29.1" +__version__ = "4.29.2" views_bp = Blueprint("views", __name__, url_prefix="/materialize/views")