Skip to content

Commit 039ef50

Browse files
0.26.0 -> 1.0.0 (#1288)
* 0.26.0 -> 1.0.0 * update chart version for major version release
1 parent 9290613 commit 039ef50

13 files changed

Lines changed: 19 additions & 19 deletions

File tree

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.26.0" "mangum>=0.10.0" -t /asset --no-binary pydantic
11+
RUN python -m pip install "titiler-application==1.0.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.26.0" "mangum>=0.10.0" "starlette-cramjam" "pydantic-settings" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas
11+
RUN python -m pip install "titiler-xarray==1.0.0" "mangum>=0.10.0" "starlette-cramjam" "pydantic-settings" "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.26.0
2+
appVersion: 1.0.0
33
description: A dynamic Web Map tile server
44
name: titiler
5-
version: 1.2.14
5+
version: 1.3.0
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: 4 additions & 4 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="0.26.0"
31+
version="1.0.0"
3232
dependencies = [
3333
"titiler-core",
3434
"titiler-xarray",
@@ -158,7 +158,7 @@ filterwarnings = [
158158
]
159159

160160
[tool.bumpversion]
161-
current_version = "0.26.0"
161+
current_version = "1.0.0"
162162
parse = """(?x)
163163
(?P<major>\\d+)\\.
164164
(?P<minor>\\d+)\\.
@@ -258,8 +258,8 @@ replace = 'titiler-extensions[cogeo,stac]=={new_version}'
258258

259259
[[tool.bumpversion.files]]
260260
filename = "src/titiler/application/pyproject.toml"
261-
search = 'titiler-mosaic=={current_version}'
262-
replace = 'titiler-mosaic=={new_version}'
261+
search = 'titiler-mosaic[mosaicjson]=={current_version}'
262+
replace = 'titiler-mosaic[mosaicjson]=={new_version}'
263263

264264
###############################################################################
265265
# Others

src/titiler/application/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ classifiers = [
3030
]
3131
dynamic = ["version"]
3232
dependencies = [
33-
"titiler-core[telemetry]==0.26.0",
34-
"titiler-extensions[cogeo,stac]==0.26.0",
35-
"titiler-mosaic[mosaicjson]==0.26.0",
33+
"titiler-core[telemetry]==1.0.0",
34+
"titiler-extensions[cogeo,stac]==1.0.0",
35+
"titiler-mosaic[mosaicjson]==1.0.0",
3636
"starlette-cramjam>=0.4,<0.6",
3737
"pydantic-settings~=2.0",
3838
]
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.26.0"
3+
__version__ = "1.0.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.26.0"
3+
__version__ = "1.0.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
@@ -30,7 +30,7 @@ classifiers = [
3030
]
3131
dynamic = ["version"]
3232
dependencies = [
33-
"titiler-core==0.26.0"
33+
"titiler-core==1.0.0"
3434
]
3535

3636
[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.26.0"
3+
__version__ = "1.0.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
@@ -30,7 +30,7 @@ classifiers = [
3030
]
3131
dynamic = ["version"]
3232
dependencies = [
33-
"titiler-core==0.26.0",
33+
"titiler-core==1.0.0",
3434
]
3535

3636
[project.optional-dependencies]

0 commit comments

Comments
 (0)