Skip to content

Commit 3253b18

Browse files
Release/v0.23.0 (#1211)
* 0.22.4 -> 0.23.0 * typo * fix version
1 parent a616620 commit 3253b18

File tree

14 files changed

+25
-31
lines changed

14 files changed

+25
-31
lines changed

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ This is a checklist for releasing a new version of **titiler**.
2222
Name the tag `X.Y.Z`, and include `vX.Y.Z` as its annotation message
2323

2424
8. Push your tag to Github, which will kick off the publishing workflow
25-
9. Create a [new release](https://github.com/stac-utils/stac-fastapi/releases/new) targeting the new tag, and use the "Generate release notes" feature to populate the description.
25+
9. Create a [new release](https://github.com/developmentseed/titiler/releases/new) targeting the new tag, and use the "Generate release notes" feature to populate the description.
2626

2727
Publish the release and mark it as the latest.

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==0.22.4" "mangum>=0.10.0" -t /asset --no-binary pydantic
11+
RUN python -m pip install "titiler.application==0.23.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/aws/lambda/Dockerfile.xarray

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.xarray==0.22.4" "mangum>=0.10.0" "aiobotocore==2.17.0" "zarr" "s3fs" "aiohttp" "h5netcdf" "starlette-cramjam" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas
11+
RUN python -m pip install "titiler.xarray==0.23.0" "mangum>=0.10.0" "aiobotocore==2.17.0" "zarr" "s3fs" "aiohttp" "h5netcdf" "starlette-cramjam" "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: 0.22.4
2+
appVersion: 0.23.0
33
description: A dynamic Web Map tile server
44
name: titiler
5-
version: 1.2.7
5+
version: 1.2.8
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: 9 additions & 15 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.22.4"
32+
version="0.23.0"
3333
dependencies = [
34-
"titiler.core==0.22.4",
35-
"titiler.xarray==0.22.4",
36-
"titiler.extensions==0.22.4",
37-
"titiler.mosaic==0.22.4",
38-
"titiler.application==0.22.4",
34+
"titiler.core==0.23.0",
35+
"titiler.xarray==0.23.0",
36+
"titiler.extensions==0.23.0",
37+
"titiler.mosaic==0.23.0",
38+
"titiler.application==0.23.0",
3939
]
4040

4141
[project.urls]
@@ -126,17 +126,11 @@ filterwarnings = [
126126
"ignore::rasterio.errors.NotGeoreferencedWarning",
127127
]
128128

129-
130-
131-
132-
133-
134-
135129
[tool.hatch.build.targets.wheel]
136130
bypass-selection = true
137131

138132
[tool.bumpversion]
139-
current_version = "0.22.4"
133+
current_version = "0.23.0"
140134
parse = """(?x)
141135
(?P<major>\\d+)\\.
142136
(?P<minor>\\d+)\\.
@@ -256,8 +250,8 @@ replace = 'titiler.core=={new_version}'
256250
# titiler.application
257251
[[tool.bumpversion.files]]
258252
filename = "src/titiler/application/pyproject.toml"
259-
search = 'titiler.core=={current_version}'
260-
replace = 'titiler.core=={new_version}'
253+
search = 'titiler.core[telemetry]=={current_version}'
254+
replace = 'titiler.core[telemetry]=={new_version}'
261255

262256
[[tool.bumpversion.files]]
263257
filename = "src/titiler/application/pyproject.toml"

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[telemetry]==0.22.4",
35-
"titiler.extensions[cogeo,stac]==0.22.4",
36-
"titiler.mosaic==0.22.4",
34+
"titiler.core[telemetry]==0.23.0",
35+
"titiler.extensions[cogeo,stac]==0.23.0",
36+
"titiler.mosaic==0.23.0",
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__ = "0.22.4"
3+
__version__ = "0.23.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.22.4"
3+
__version__ = "0.23.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.22.4"
34+
"titiler.core==0.23.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.22.4"
3+
__version__ = "0.23.0"
44

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

0 commit comments

Comments
 (0)