Skip to content

Commit ffd67af

Browse files
committed
Bump version: 0.17.1 → 0.17.2
1 parent e89228a commit ffd67af

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.17.1
2+
current_version = 0.17.2
33
commit = True
44
tag = True
55
tag_name = {new_version}

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.17.1" "mangum>=0.10.0" -t /asset --no-binary pydantic
8+
RUN pip install "titiler.application==0.17.2" "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-[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.17.1
2+
appVersion: 0.17.2
33
description: A dynamic Web Map tile server
44
name: titiler
55
version: 1.1.2

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ classifiers = [
2929
"Programming Language :: Python :: 3.12",
3030
"Topic :: Scientific/Engineering :: GIS",
3131
]
32-
version="0.17.1"
32+
version="0.17.2"
3333
dependencies = [
34-
"titiler.core==0.17.1",
35-
"titiler.extensions==0.17.1",
36-
"titiler.mosaic==0.17.1",
37-
"titiler.application==0.17.1",
34+
"titiler.core==0.17.2",
35+
"titiler.extensions==0.17.2",
36+
"titiler.mosaic==0.17.2",
37+
"titiler.application==0.17.2",
3838
]
3939

4040
[project.optional-dependencies]

src/titiler/application/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.17.1",
35-
"titiler.extensions[cogeo,stac]==0.17.1",
36-
"titiler.mosaic==0.17.1",
34+
"titiler.core==0.17.2",
35+
"titiler.extensions[cogeo,stac]==0.17.2",
36+
"titiler.mosaic==0.17.2",
3737
"starlette-cramjam>=0.3,<0.4",
3838
"pydantic-settings~=2.0",
3939
]
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.17.1"
3+
__version__ = "0.17.2"

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.17.1"
3+
__version__ = "0.17.2"
44

55
from . import dependencies, errors, factory, routing # noqa
66
from .factory import ( # noqa

src/titiler/extensions/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.17.1"
34+
"titiler.core==0.17.2"
3535
]
3636

3737
[project.optional-dependencies]

src/titiler/extensions/titiler/extensions/__init__.py

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

3-
__version__ = "0.17.1"
3+
__version__ = "0.17.2"
44

55
from .cogeo import cogValidateExtension # noqa
66
from .stac import stacExtension # noqa

src/titiler/mosaic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.17.1",
34+
"titiler.core==0.17.2",
3535
"cogeo-mosaic>=7.0,<8.0",
3636
]
3737

0 commit comments

Comments
 (0)