Skip to content

Commit 05f39bf

Browse files
committedJan 29, 2025·
0.21.0 -> 0.21.1
1 parent 91a1f20 commit 05f39bf

File tree

13 files changed

+23
-22
lines changed

13 files changed

+23
-22
lines changed
 

‎CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Notes
22

3-
## Unreleased
3+
## 0.21.1 (2025-01-29)
44

55
### titiler.core
66

‎deployment/aws/lambda/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /tmp
88
RUN yum install -y gcc-c++
99

1010
RUN python -m pip install pip -U
11-
RUN python -m pip install "titiler.application==0.21.0" "mangum>=0.10.0" -t /asset --no-binary pydantic
11+
RUN python -m pip install "titiler.application==0.21.1" "mangum>=0.10.0" -t /asset --no-binary pydantic
1212

1313
# Reduce package size and remove useless files
1414
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: 0.21.0
2+
appVersion: 0.21.1
33
description: A dynamic Web Map tile server
44
name: titiler
5-
version: 1.2.1
5+
version: 1.2.2
66
icon: https://raw.githubusercontent.com/developmentseed/titiler/main/docs/logos/TiTiler_logo_small.png
77
maintainers:
88
- name: emmanuelmathot # Emmanuel Mathot

‎pyproject.toml

+8-7
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ classifiers = [
2929
"Programming Language :: Python :: 3.13",
3030
"Topic :: Scientific/Engineering :: GIS",
3131
]
32-
version="0.21.0"
32+
version="0.21.1"
3333
dependencies = [
34-
"titiler.core==0.21.0",
35-
"titiler.xarray==0.21.0",
36-
"titiler.extensions==0.21.0",
37-
"titiler.mosaic==0.21.0",
38-
"titiler.application==0.21.0",
34+
"titiler.core==0.21.1",
35+
"titiler.xarray==0.21.1",
36+
"titiler.extensions==0.21.1",
37+
"titiler.mosaic==0.21.1",
38+
"titiler.application==0.21.1",
3939
]
4040

4141
[project.urls]
@@ -126,11 +126,12 @@ filterwarnings = [
126126
"ignore::rasterio.errors.NotGeoreferencedWarning",
127127
]
128128

129+
129130
[tool.hatch.build.targets.wheel]
130131
bypass-selection = true
131132

132133
[tool.bumpversion]
133-
current_version = "0.21.0"
134+
current_version = "0.21.1"
134135
parse = """(?x)
135136
(?P<major>\\d+)\\.
136137
(?P<minor>\\d+)\\.

‎src/titiler/application/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.21.0",
35-
"titiler.extensions[cogeo,stac]==0.21.0",
36-
"titiler.mosaic==0.21.0",
34+
"titiler.core==0.21.1",
35+
"titiler.extensions[cogeo,stac]==0.21.1",
36+
"titiler.mosaic==0.21.1",
3737
"starlette-cramjam>=0.4,<0.5",
3838
"pydantic-settings~=2.0",
3939
]
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.application"""
22

3-
__version__ = "0.21.0"
3+
__version__ = "0.21.1"

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.core"""
22

3-
__version__ = "0.21.0"
3+
__version__ = "0.21.1"
44

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

‎src/titiler/extensions/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.21.0"
34+
"titiler.core==0.21.1"
3535
]
3636

3737
[project.optional-dependencies]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.extensions"""
22

3-
__version__ = "0.21.0"
3+
__version__ = "0.21.1"
44

55
from .cogeo import cogValidateExtension # noqa
66
from .render import stacRenderExtension # noqa

‎src/titiler/mosaic/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.21.0",
34+
"titiler.core==0.21.1",
3535
"cogeo-mosaic>=8.0,<9.0",
3636
]
3737

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.mosaic"""
22

3-
__version__ = "0.21.0"
3+
__version__ = "0.21.1"
44

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

‎src/titiler/xarray/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classifiers = [
3030
]
3131
dynamic = ["version"]
3232
dependencies = [
33-
"titiler.core==0.21.0",
33+
"titiler.core==0.21.1",
3434
"rio-tiler>=7.2,<8.0",
3535
"xarray",
3636
"rioxarray",
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.xarray"""
22

3-
__version__ = "0.21.0"
3+
__version__ = "0.21.1"

0 commit comments

Comments
 (0)
Please sign in to comment.