Skip to content

Commit 00023fd

Browse files
committed
0.24.1 -> 0.24.2
1 parent 1676fa4 commit 00023fd

File tree

14 files changed

+25
-22
lines changed

14 files changed

+25
-22
lines changed

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 0.24.2 (2025-10-16)
6+
57
### titiler.core
68

79
* update `TileJSON` spec from 2.2.0 to 3.0.0

deployment/aws/lambda/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /tmp
88
RUN dnf install -y gcc-c++ && dnf clean all
99

1010
RUN python -m pip install pip -U
11-
RUN python -m pip install "titiler.application==0.24.1" "mangum>=0.10.0" -t /asset --no-binary pydantic
11+
RUN python -m pip install "titiler.application==0.24.2" "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/aws/lambda/Dockerfile.xarray

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /tmp
88
RUN dnf install -y gcc-c++ && dnf clean all
99

1010
RUN python -m pip install pip -U
11-
RUN python -m pip install "titiler.xarray==0.24.1" "mangum>=0.10.0" "aiobotocore==2.17.0" "zarr" "s3fs" "aiohttp" "h5netcdf" "starlette-cramjam" "pydantic-settings" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas
11+
RUN python -m pip install "titiler.xarray==0.24.2" "mangum>=0.10.0" "aiobotocore==2.17.0" "zarr" "s3fs" "aiohttp" "h5netcdf" "starlette-cramjam" "pydantic-settings" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: 0.24.1
2+
appVersion: 0.24.2
33
description: A dynamic Web Map tile server
44
name: titiler
5-
version: 1.2.11
5+
version: 1.2.12
66
icon: https://raw.githubusercontent.com/developmentseed/titiler/main/docs/logos/TiTiler_logo_small.png
77
maintainers:
88
- name: emmanuelmathot # Emmanuel Mathot

pyproject.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ classifiers = [
2828
"Programming Language :: Python :: 3.13",
2929
"Topic :: Scientific/Engineering :: GIS",
3030
]
31-
version="0.24.1"
31+
version="0.24.2"
3232
dependencies = [
33-
"titiler.core==0.24.1",
34-
"titiler.xarray==0.24.1",
35-
"titiler.extensions==0.24.1",
36-
"titiler.mosaic==0.24.1",
37-
"titiler.application==0.24.1",
33+
"titiler.core==0.24.2",
34+
"titiler.xarray==0.24.2",
35+
"titiler.extensions==0.24.2",
36+
"titiler.mosaic==0.24.2",
37+
"titiler.application==0.24.2",
3838
]
3939

4040
[project.urls]
@@ -128,11 +128,12 @@ filterwarnings = [
128128

129129

130130

131+
131132
[tool.hatch.build.targets.wheel]
132133
bypass-selection = true
133134

134135
[tool.bumpversion]
135-
current_version = "0.24.1"
136+
current_version = "0.24.2"
136137
parse = """(?x)
137138
(?P<major>\\d+)\\.
138139
(?P<minor>\\d+)\\.

src/titiler/application/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ classifiers = [
3030
]
3131
dynamic = ["version"]
3232
dependencies = [
33-
"titiler.core[telemetry]==0.24.1",
34-
"titiler.extensions[cogeo,stac]==0.24.1",
35-
"titiler.mosaic==0.24.1",
33+
"titiler.core[telemetry]==0.24.2",
34+
"titiler.extensions[cogeo,stac]==0.24.2",
35+
"titiler.mosaic==0.24.2",
3636
"starlette-cramjam>=0.4,<0.6",
3737
"pydantic-settings~=2.0",
3838
]
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.24.1"
3+
__version__ = "0.24.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.24.1"
3+
__version__ = "0.24.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
@@ -30,7 +30,7 @@ classifiers = [
3030
]
3131
dynamic = ["version"]
3232
dependencies = [
33-
"titiler.core==0.24.1"
33+
"titiler.core==0.24.2"
3434
]
3535

3636
[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.24.1"
3+
__version__ = "0.24.2"
44

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

0 commit comments

Comments
 (0)