Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.0.3"
".": "2.0.4"
}
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## Unreleased

## 2.0.4 (2026-06-03)

## What's Changed
* chore(deps): bump gcsfs from 2026.4.0 to 2026.5.0 in the all group by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1410
* ci(deps): bump the all group with 6 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1409
* fix: trigger PyPI publish/deploy by authoring releases with the DS_RELEASE_BOT app token by @lhoupert in https://github.com/developmentseed/titiler/pull/1407
* chore: add cover-scale parameter to control shape coverage in statistics by @vincentsarago in https://github.com/developmentseed/titiler/pull/1414


**Full Changelog**: https://github.com/developmentseed/titiler/compare/2.0.3...2.0.4

## 2.0.3 (2026-05-28)

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion deployment/aws/lambda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /tmp
RUN dnf install -y gcc-c++ && dnf clean all

RUN python -m pip install pip -U
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
RUN python -m pip install "titiler-application==2.0.4" "mangum==0.19.0" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas # x-release-please-version

# Reduce package size and remove useless files
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;
Expand Down
4 changes: 2 additions & 2 deletions deployment/k8s/charts/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
appVersion: "2.0.3" # x-release-please-version
appVersion: "2.0.4" # x-release-please-version
description: A dynamic Web Map tile server
name: titiler
version: 2.1.4
version: 2.1.5
icon: https://raw.githubusercontent.com/developmentseed/titiler/main/docs/logos/TiTiler_logo_small.png
maintainers:
- name: emmanuelmathot # Emmanuel Mathot
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: GIS",
]
version="2.0.3"
version="2.0.4"
dependencies = [
"titiler-core",
"titiler-xarray",
Expand Down
8 changes: 4 additions & 4 deletions src/titiler/application/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"titiler-core[telemetry]==2.0.3", # x-release-please-version
"titiler-xarray==2.0.3", # x-release-please-version
"titiler-extensions[cogeo,stac]==2.0.3", # x-release-please-version
"titiler-mosaic[mosaicjson]==2.0.3", # x-release-please-version
"titiler-core[telemetry]==2.0.4", # x-release-please-version
"titiler-xarray==2.0.4", # x-release-please-version
"titiler-extensions[cogeo,stac]==2.0.4", # x-release-please-version
"titiler-mosaic[mosaicjson]==2.0.4", # x-release-please-version
"starlette-cramjam>=0.4,<1.0",
"pydantic-settings~=2.0",
]
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/application/titiler/application/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""titiler.application"""

__version__ = "2.0.3" # x-release-please-version
__version__ = "2.0.4" # x-release-please-version
2 changes: 1 addition & 1 deletion src/titiler/core/titiler/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""titiler.core"""

__version__ = "2.0.3" # x-release-please-version
__version__ = "2.0.4" # x-release-please-version

from . import dependencies, errors, factory, routing # noqa
from .factory import ( # noqa
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/extensions/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"titiler-core==2.0.3", # x-release-please-version
"titiler-core==2.0.4", # x-release-please-version
"typing-extensions; python_version < '3.12'"
]

Expand Down
2 changes: 1 addition & 1 deletion src/titiler/extensions/titiler/extensions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""titiler.extensions"""

__version__ = "2.0.3" # x-release-please-version
__version__ = "2.0.4" # x-release-please-version

from .cogeo import cogValidateExtension # noqa
from .render import stacRenderExtension # noqa
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/mosaic/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"titiler-core==2.0.3", # x-release-please-version
"titiler-core==2.0.4", # x-release-please-version
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/mosaic/titiler/mosaic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""titiler.mosaic"""

__version__ = "2.0.3" # x-release-please-version
__version__ = "2.0.4" # x-release-please-version

from . import errors, factory # noqa
from .factory import MosaicTilerFactory # noqa
2 changes: 1 addition & 1 deletion src/titiler/xarray/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"titiler-core==2.0.3", # x-release-please-version
"titiler-core==2.0.4", # x-release-please-version
"xarray",
"rioxarray",
"obstore",
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/xarray/titiler/xarray/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""titiler.xarray"""

__version__ = "2.0.3" # x-release-please-version
__version__ = "2.0.4" # x-release-please-version
Loading