Skip to content

Commit 211626e

Browse files
chore: release main
1 parent d64ede7 commit 211626e

14 files changed

Lines changed: 33 additions & 16 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
".": "2.0.2",
2+
".": "2.0.3",
33
"deployment/k8s/charts": "2.1.2"
44
}

CHANGES.md

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

33
## Unreleased
44

5+
## 2.0.3 (2026-05-28)
6+
7+
## What's Changed
8+
* docs: Add TiTiler extension links to external_links.md by @jo-chemla in https://github.com/developmentseed/titiler/pull/1381
9+
* ci(deps): bump the all group with 4 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1386
10+
* chore(deps): bump pillow from 12.1.1 to 12.2.0 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1388
11+
* chore(deps): bump the all group with 11 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1387
12+
* chore(deps): bump jupyterlab from 4.5.6 to 4.5.7 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1385
13+
* chore(deps): bump notebook from 7.5.5 to 7.5.6 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1384
14+
* chore(deps): bump jupyter-server from 2.17.0 to 2.18.0 by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1390
15+
* chore(deps): bump the all group across 1 directory with 15 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1402
16+
* ci(deps): bump the all group across 1 directory with 4 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1401
17+
* fix: starlette path security issue and update dependencies by @vincentsarago in https://github.com/developmentseed/titiler/pull/1404
18+
19+
20+
**Full Changelog**: https://github.com/developmentseed/titiler/compare/2.0.2...2.0.3
21+
522
## 2.0.2 (2026-04-27)
623

724
## What's Changed

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==2.0.2" "mangum==0.19.0" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas # x-release-please-version
11+
RUN python -m pip install "titiler-application==2.0.3" "mangum==0.19.0" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas # x-release-please-version
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: "2.0.2" # x-release-please-version
2+
appVersion: "2.0.3" # x-release-please-version
33
description: A dynamic Web Map tile server
44
name: titiler
55
version: 2.1.3

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.14",
2929
"Topic :: Scientific/Engineering :: GIS",
3030
]
31-
version="2.0.2"
31+
version="2.0.3"
3232
dependencies = [
3333
"titiler-core",
3434
"titiler-xarray",

src/titiler/application/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ classifiers = [
3030
]
3131
dynamic = ["version"]
3232
dependencies = [
33-
"titiler-core[telemetry]==2.0.2", # x-release-please-version
34-
"titiler-xarray==2.0.2", # x-release-please-version
35-
"titiler-extensions[cogeo,stac]==2.0.2", # x-release-please-version
36-
"titiler-mosaic[mosaicjson]==2.0.2", # x-release-please-version
33+
"titiler-core[telemetry]==2.0.3", # x-release-please-version
34+
"titiler-xarray==2.0.3", # x-release-please-version
35+
"titiler-extensions[cogeo,stac]==2.0.3", # x-release-please-version
36+
"titiler-mosaic[mosaicjson]==2.0.3", # x-release-please-version
3737
"starlette-cramjam>=0.4,<1.0",
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__ = "2.0.2" # x-release-please-version
3+
__version__ = "2.0.3" # x-release-please-version

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__ = "2.0.2" # x-release-please-version
3+
__version__ = "2.0.3" # x-release-please-version
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==2.0.2", # x-release-please-version
33+
"titiler-core==2.0.3", # x-release-please-version
3434
"typing-extensions; python_version < '3.12'"
3535
]
3636

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__ = "2.0.2" # x-release-please-version
3+
__version__ = "2.0.3" # x-release-please-version
44

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

0 commit comments

Comments
 (0)