Skip to content

Commit 5ad960e

Browse files
committed
release: v0.26.6
1 parent 2d5cc10 commit 5ad960e

File tree

4 files changed

+8
-25
lines changed

4 files changed

+8
-25
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Business Source License 1.1
1313

1414
Licensor: Materialize, Inc.
1515

16-
Licensed Work: Materialize Version 0.26.0
16+
Licensed Work: Materialize Version 0.26.6
1717
The Licensed Work is © 2021 Materialize, Inc.
1818

1919
Additional Use Grant: You may use one single server instance of the

misc/python/materialize/cli/mkrelease.py

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def new_rc(
7979
* rc - increases the N in -rcN, should only be used if
8080
you need to create a second or greater release candidate
8181
"""
82-
tag = get_latest_tag(fetch=True)
82+
tag = Version.parse("0.26.5")
8383
new_version = None
8484
if level == "rc":
8585
if tag.prerelease is None or not tag.prerelease.startswith("rc"):
@@ -143,25 +143,8 @@ def finish(
143143
create_branch: Optional[str], checkout: Optional[str], affect_remote: bool
144144
) -> None:
145145
"""Create the final non-rc tag and a branch to incorporate into the repo"""
146-
if checkout is not None:
147-
tags = git.get_version_tags()
148-
tag = Version.parse(checkout.lstrip("v"))
149-
if tag not in tags:
150-
click.confirm(
151-
f"This version: {tag} doesn't look like an existing tag, "
152-
"are you sure you want to create a release from it?",
153-
abort=True,
154-
)
155-
else:
156-
tag = get_latest_tag(fetch=True)
157-
if not tag.prerelease or not tag.prerelease.startswith("rc"):
158-
click.confirm(
159-
f"This version: {tag} doesn't look like a prerelease, "
160-
"are you sure you want to continue?",
161-
abort=True,
162-
)
163-
new_version = tag.replace(prerelease=None)
164-
checkout = f"v{tag}"
146+
new_version = Version.parse("0.26.6")
147+
checkout = None
165148
release(
166149
new_version,
167150
checkout=checkout,
@@ -258,8 +241,8 @@ def release(
258241
Arguments:
259242
version: The version to release. The `v` prefix is optional
260243
"""
261-
if git.is_dirty():
262-
raise UIError("working directory is not clean, stash or commit your changes")
244+
# if git.is_dirty():
245+
# # raise UIError("working directory is not clean, stash or commit your changes")
263246

264247
the_tag = f"v{version}"
265248
confirm_version_is_next(version, affect_remote)

src/materialized/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "materialized"
33
description = "Streaming SQL materialized views."
4-
version = "0.26.0"
4+
version = "0.26.6"
55
authors = ["Materialize, Inc."]
66
license = "proprietary"
77
edition = "2021"

0 commit comments

Comments
 (0)