Skip to content

Commit

Permalink
fix k8s version check
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Sep 21, 2022
1 parent 545b150 commit 29439cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deployment/k8s/charts/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 0.7.0
appVersion: 0.7.1
description: A dynamic Web Map tile server
name: titiler
version: 1.0.0
Expand Down
8 changes: 6 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ current_version = 0.7.1
commit = True
tag = True
tag_name = {new_version}
parse =
parse =
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<pre>a|b|rc)(?P<prenum>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}{pre}{prenum}
{major}.{minor}.{patch}

Expand All @@ -30,6 +30,10 @@ replace = __version__ = "{new_version}"
search = titiler.application=={current_version}
replace = titiler.application=={new_version}

[bumpversion:file:deployment/k8s/charts/Chart.yml]
search = appVersion: {current_version}
replace = appVersion: {new_version}

[isort]
profile = black
known_first_party = titiler
Expand Down

0 comments on commit 29439cc

Please sign in to comment.