From 30c7c3755e29a770c31e2580206314bb84c36bfd Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 20 Jul 2024 16:28:51 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=204.30.0=20=E2=86=92=204.30.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 2 +- materializationengine/__init__.py | 2 +- materializationengine/blueprints/client/api.py | 2 +- materializationengine/blueprints/client/api2.py | 2 +- materializationengine/blueprints/materialize/api.py | 2 +- materializationengine/views.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2298c46a..25dd0795 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.30.0 +current_version = 4.30.1 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 6c778ac6..1427b05c 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.30.0" +release = "4.30.1" master_doc = "index" diff --git a/materializationengine/__init__.py b/materializationengine/__init__.py index 93fb0a3b..02ba49f7 100644 --- a/materializationengine/__init__.py +++ b/materializationengine/__init__.py @@ -1 +1 @@ -__version__ = "4.30.0" +__version__ = "4.30.1" diff --git a/materializationengine/blueprints/client/api.py b/materializationengine/blueprints/client/api.py index d756c93d..24a9afa7 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.30.0" +__version__ = "4.30.1" authorizations = { diff --git a/materializationengine/blueprints/client/api2.py b/materializationengine/blueprints/client/api2.py index 37410104..b75e74c8 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.30.0" +__version__ = "4.30.1" authorizations = { diff --git a/materializationengine/blueprints/materialize/api.py b/materializationengine/blueprints/materialize/api.py index 9a63bc68..cec73952 100644 --- a/materializationengine/blueprints/materialize/api.py +++ b/materializationengine/blueprints/materialize/api.py @@ -32,7 +32,7 @@ ) -__version__ = "4.30.0" +__version__ = "4.30.1" bulk_upload_parser = reqparse.RequestParser() diff --git a/materializationengine/views.py b/materializationengine/views.py index b81ccc20..6015d6c0 100644 --- a/materializationengine/views.py +++ b/materializationengine/views.py @@ -55,7 +55,7 @@ import caveclient -__version__ = "4.30.0" +__version__ = "4.30.1" views_bp = Blueprint("views", __name__, url_prefix="/materialize/views")