Skip to content

Commit 29439cc

Browse files
committed
fix k8s version check
1 parent 545b150 commit 29439cc

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

deployment/k8s/charts/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: 0.7.0
2+
appVersion: 0.7.1
33
description: A dynamic Web Map tile server
44
name: titiler
55
version: 1.0.0

setup.cfg

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ current_version = 0.7.1
33
commit = True
44
tag = True
55
tag_name = {new_version}
6-
parse =
6+
parse =
77
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
88
((?P<pre>a|b|rc)(?P<prenum>\d+))?
9-
serialize =
9+
serialize =
1010
{major}.{minor}.{patch}{pre}{prenum}
1111
{major}.{minor}.{patch}
1212

@@ -30,6 +30,10 @@ replace = __version__ = "{new_version}"
3030
search = titiler.application=={current_version}
3131
replace = titiler.application=={new_version}
3232

33+
[bumpversion:file:deployment/k8s/charts/Chart.yml]
34+
search = appVersion: {current_version}
35+
replace = appVersion: {new_version}
36+
3337
[isort]
3438
profile = black
3539
known_first_party = titiler

0 commit comments

Comments
 (0)