Skip to content

Commit e854ae1

Browse files
committed
Bump version: 0.8.1 → 0.9.0
1 parent 33c980e commit e854ae1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

deployment/aws/lambda/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM --platform=linux/amd64 public.ecr.aws/lambda/python:${PYTHON_VERSION}
55
WORKDIR /tmp
66

77
RUN pip install pip -U
8-
RUN pip install "titiler.application==0.8.1" "mangum>=0.10.0" -t /asset --no-binary pydantic
8+
RUN pip install "titiler.application==0.9.0" "mangum>=0.10.0" -t /asset --no-binary pydantic
99

1010
# Reduce package size and remove useless files
1111
RUN cd /asset && find . -type f -name '*.pyc' | while read f; do n=$(echo $f | sed 's/__pycache__\///' | sed 's/.cpython-[2-3][0-9]//'); cp $f $n; done;

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.8.1
2+
appVersion: 0.9.0
33
description: A dynamic Web Map tile server
44
name: titiler
55
version: 1.1.0

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.8.1
2+
current_version = 0.9.0
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

0 commit comments

Comments
 (0)