Skip to content

Commit 07e269e

Browse files
github-actions[bot]ds-release-bot[bot]vincentsarago
authored
chore: release 2.0.4 (#1411)
* chore: release 2.0.4 * fix: chart version --------- Co-authored-by: ds-release-bot[bot] <116609932+ds-release-bot[bot]@users.noreply.github.com> Co-authored-by: vincentsarago <vincent.sarago@gmail.com>
1 parent 58e09df commit 07e269e

14 files changed

Lines changed: 28 additions & 17 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.0.3"
2+
".": "2.0.4"
33
}

CHANGES.md

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

33
## Unreleased
44

5+
## 2.0.4 (2026-06-03)
6+
7+
## What's Changed
8+
* 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
9+
* ci(deps): bump the all group with 6 updates by @dependabot[bot] in https://github.com/developmentseed/titiler/pull/1409
10+
* 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
11+
* chore: add cover-scale parameter to control shape coverage in statistics by @vincentsarago in https://github.com/developmentseed/titiler/pull/1414
12+
13+
14+
**Full Changelog**: https://github.com/developmentseed/titiler/compare/2.0.3...2.0.4
15+
516
## 2.0.3 (2026-05-28)
617

718
## 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.3" "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.4" "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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: "2.0.3" # x-release-please-version
2+
appVersion: "2.0.4" # x-release-please-version
33
description: A dynamic Web Map tile server
44
name: titiler
5-
version: 2.1.4
5+
version: 2.1.5
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: 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.3"
31+
version="2.0.4"
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.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
33+
"titiler-core[telemetry]==2.0.4", # x-release-please-version
34+
"titiler-xarray==2.0.4", # x-release-please-version
35+
"titiler-extensions[cogeo,stac]==2.0.4", # x-release-please-version
36+
"titiler-mosaic[mosaicjson]==2.0.4", # 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.3" # x-release-please-version
3+
__version__ = "2.0.4" # 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.3" # x-release-please-version
3+
__version__ = "2.0.4" # 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.3", # x-release-please-version
33+
"titiler-core==2.0.4", # 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.3" # x-release-please-version
3+
__version__ = "2.0.4" # x-release-please-version
44

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

0 commit comments

Comments
 (0)