Skip to content

Commit 5bd9aea

Browse files
committed
0.21.1 -> 0.22.0
1 parent 1c64a9f commit 5bd9aea

File tree

12 files changed

+22
-21
lines changed

12 files changed

+22
-21
lines 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 yum install -y gcc-c++
99

1010
RUN python -m pip install pip -U
11-
RUN python -m pip install "titiler.application==0.21.1" "mangum>=0.10.0" -t /asset --no-binary pydantic
11+
RUN python -m pip install "titiler.application==0.22.0" "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/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.21.1
2+
appVersion: 0.22.0
33
description: A dynamic Web Map tile server
44
name: titiler
5-
version: 1.2.2
5+
version: 1.2.3
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
@@ -29,13 +29,13 @@ classifiers = [
2929
"Programming Language :: Python :: 3.13",
3030
"Topic :: Scientific/Engineering :: GIS",
3131
]
32-
version="0.21.1"
32+
version="0.22.0"
3333
dependencies = [
34-
"titiler.core==0.21.1",
35-
"titiler.xarray==0.21.1",
36-
"titiler.extensions==0.21.1",
37-
"titiler.mosaic==0.21.1",
38-
"titiler.application==0.21.1",
34+
"titiler.core==0.22.0",
35+
"titiler.xarray==0.22.0",
36+
"titiler.extensions==0.22.0",
37+
"titiler.mosaic==0.22.0",
38+
"titiler.application==0.22.0",
3939
]
4040

4141
[project.urls]
@@ -127,11 +127,12 @@ filterwarnings = [
127127
]
128128

129129

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

133134
[tool.bumpversion]
134-
current_version = "0.21.1"
135+
current_version = "0.22.0"
135136
parse = """(?x)
136137
(?P<major>\\d+)\\.
137138
(?P<minor>\\d+)\\.

src/titiler/application/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.21.1",
35-
"titiler.extensions[cogeo,stac]==0.21.1",
36-
"titiler.mosaic==0.21.1",
34+
"titiler.core==0.22.0",
35+
"titiler.extensions[cogeo,stac]==0.22.0",
36+
"titiler.mosaic==0.22.0",
3737
"starlette-cramjam>=0.4,<0.5",
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__ = "0.21.1"
3+
__version__ = "0.22.0"

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.21.1"
3+
__version__ = "0.22.0"
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
@@ -31,7 +31,7 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.21.1"
34+
"titiler.core==0.22.0"
3535
]
3636

3737
[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.21.1"
3+
__version__ = "0.22.0"
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
@@ -31,7 +31,7 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.21.1",
34+
"titiler.core==0.22.0",
3535
"cogeo-mosaic>=8.0,<9.0",
3636
]
3737

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.mosaic"""
22

3-
__version__ = "0.21.1"
3+
__version__ = "0.22.0"
44

55
from . import errors, factory # noqa
66
from .factory import MosaicTilerFactory # noqa

src/titiler/xarray/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.21.1",
33+
"titiler.core==0.22.0",
3434
"rio-tiler>=7.6.1,<8.0",
3535
"xarray",
3636
"rioxarray",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.xarray"""
22

3-
__version__ = "0.21.1"
3+
__version__ = "0.22.0"

0 commit comments

Comments
 (0)