Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

[meta] bump version on examples readme #601

Merged
merged 1 commit into from
Apr 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion helpers/bumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

file_patterns = [
"*/examples/*/*.y*ml",
"*/examples/*/README.md",
"helpers/examples.mk",
"*/README.md",
"*/values.y*ml",
Expand All @@ -39,7 +40,9 @@

# Anything matching this regex won't have version bumps changed
# This was happening because strings like 127.0.0.1 match for 7.0.0
blacklist = re.compile(r".*127.0.0.1.*")
# "7.0.0-alpha1" is also used in elasticsearch upgrade test and so shouldn't
# been bump
blacklist = re.compile(r".*127.0.0.1.*|.*7.0.0-alpha1.*")

print("Updating versions...")

Expand Down