Skip to content

Commit 1f95af5

Browse files
committed
2.0.0a1 -> 2.0.0a2
1 parent f660e55 commit 1f95af5

13 files changed

Lines changed: 20 additions & 17 deletions

File tree

CHANGES.md

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

33
## Unreleased
44

5+
6+
## 2.0.0a2 (2026-02-13)
7+
58
### titiler.extensions
69

710
* **render**:

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.0a1" "mangum==0.19.0" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas
11+
RUN python -m pip install "titiler-application==2.0.0a2" "mangum==0.19.0" "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: 2.0.0a1
2+
appVersion: 2.0.0a2
33
description: A dynamic Web Map tile server
44
name: titiler
5-
version: 2.0.0
5+
version: 2.0.1
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: 2 additions & 2 deletions
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.0a1"
31+
version="2.0.0a2"
3232
dependencies = [
3333
"titiler-core",
3434
"titiler-xarray",
@@ -156,7 +156,7 @@ filterwarnings = [
156156
]
157157

158158
[tool.bumpversion]
159-
current_version = "2.0.0a1"
159+
current_version = "2.0.0a2"
160160
parse = """(?x)
161161
(?P<major>\\d+)\\.
162162
(?P<minor>\\d+)\\.

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.0a1",
34-
"titiler-xarray==2.0.0a1",
35-
"titiler-extensions[cogeo,stac]==2.0.0a1",
36-
"titiler-mosaic[mosaicjson]==2.0.0a1",
33+
"titiler-core[telemetry]==2.0.0a2",
34+
"titiler-xarray==2.0.0a2",
35+
"titiler-extensions[cogeo,stac]==2.0.0a2",
36+
"titiler-mosaic[mosaicjson]==2.0.0a2",
3737
"starlette-cramjam>=0.4,<0.6",
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.0a1"
3+
__version__ = "2.0.0a2"

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.0a1"
3+
__version__ = "2.0.0a2"
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.0a1",
33+
"titiler-core==2.0.0a2",
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.0a1"
3+
__version__ = "2.0.0a2"
44

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

src/titiler/mosaic/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.0a1",
33+
"titiler-core==2.0.0a2",
3434
]
3535

3636
[project.optional-dependencies]

0 commit comments

Comments
 (0)