Skip to content

Commit 70f85f6

Browse files
Bump version: 5.15.0 → 5.15.1
1 parent c33b65b commit 70f85f6

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.15.0
2+
current_version = 5.15.1
33
commit = True
44
tag = True
55

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Derrick Brittain, Forrest Collman, Sven Dorkenwald"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "5.15.0"
26+
release = "5.15.1"
2727

2828

2929

materializationengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.15.0"
1+
__version__ = "5.15.1"

materializationengine/blueprints/client/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from materializationengine.models import MaterializedMetadata
3333
from materializationengine.schemas import AnalysisTableSchema, AnalysisVersionSchema
3434

35-
__version__ = "5.15.0"
35+
__version__ = "5.15.1"
3636

3737

3838
authorizations = {

materializationengine/blueprints/client/api2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
from materializationengine.schemas import AnalysisTableSchema, AnalysisVersionSchema
7272
from materializationengine.utils import check_read_permission
7373

74-
__version__ = "5.15.0"
74+
__version__ = "5.15.1"
7575

7676

7777
authorizations = {

materializationengine/blueprints/materialize/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
)
3636

3737

38-
__version__ = "5.15.0"
38+
__version__ = "5.15.1"
3939

4040

4141
bulk_upload_parser = reqparse.RequestParser()

materializationengine/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
from materializationengine.utils import check_read_permission, get_config_param
5858

5959

60-
__version__ = "5.15.0"
60+
__version__ = "5.15.1"
6161

6262
views_bp = Blueprint("views", __name__, url_prefix="/materialize/views")
6363

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "materializationengine"
7-
version = "5.15.0"
7+
version = "5.15.1"
88
description = "Combines DynamicAnnotationDB and PyChunkedGraph"
99
readme = "README.md"
1010
requires-python = "==3.12.*"
@@ -83,7 +83,7 @@ default-groups = ["dev", "docs", "lint", "profile"]
8383
allow-direct-references = true
8484

8585
[tool.bumpversion]
86-
current_version = "5.15.0"
86+
current_version = "5.15.1"
8787
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
8888
serialize = ["{major}.{minor}.{patch}"]
8989
search = "{current_version}"

0 commit comments

Comments
 (0)