Skip to content

Commit 0ab3442

Browse files
committed
Bump version: 0.7.1 → 0.8.0
1 parent e18acc8 commit 0ab3442

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
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.7.1" "mangum>=0.10.0" -t /asset --no-binary pydantic
8+
RUN pip install "titiler.application==0.8.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.7.1
2+
appVersion: 0.8.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.7.1
2+
current_version = 0.8.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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
with open("README.md") as f:
66
long_description = f.read()
77

8-
__version__ = "0.7.1"
8+
__version__ = "0.8.0"
99

1010
inst_reqs = [
1111
f"titiler.core=={__version__}",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.application"""
22

3-
__version__ = "0.7.1"
3+
__version__ = "0.8.0"

src/titiler/core/titiler/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.core"""
22

3-
__version__ = "0.7.1"
3+
__version__ = "0.8.0"
44

55
from . import dependencies, errors, factory, routing # noqa
66
from .factory import ( # noqa
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.mosaic"""
22

3-
__version__ = "0.7.1"
3+
__version__ = "0.8.0"
44

55
from . import errors, factory # noqa
66
from .factory import MosaicTilerFactory # noqa

0 commit comments

Comments
 (0)