Skip to content

Commit 650f6e4

Browse files
committed
Bump version: 0.9.0 → 0.10.0
1 parent 0222ee4 commit 650f6e4

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

deployment/aws/lambda/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM --platform=linux/amd64 public.ecr.aws/lambda/python:${PYTHON_VERSION}
55
WORKDIR /tmp
66

77
RUN pip install pip -U
8-
RUN pip install "titiler.application==0.9.0" "mangum>=0.10.0" -t /asset --no-binary pydantic
8+
RUN pip install "titiler.application==0.10.0" "mangum>=0.10.0" -t /asset --no-binary pydantic
99

1010
# Reduce package size and remove useless files
1111
RUN cd /asset && find . -type f -name '*.pyc' | while read f; do n=$(echo $f | sed 's/__pycache__\///' | sed 's/.cpython-[2-3][0-9]//'); cp $f $n; done;

deployment/k8s/charts/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: 0.9.0
2+
appVersion: 0.10.0
33
description: A dynamic Web Map tile server
44
name: titiler
55
version: 1.1.0

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.9.0
2+
current_version = 0.10.0
33
commit = True
44
tag = True
55
tag_name = {new_version}
6-
parse =
6+
parse =
77
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
88
((?P<pre>a|b|rc)(?P<prenum>\d+))?
9-
serialize =
9+
serialize =
1010
{major}.{minor}.{patch}{pre}{prenum}
1111
{major}.{minor}.{patch}
1212

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
with open("README.md") as f:
66
long_description = f.read()
77

8-
__version__ = "0.9.0"
8+
__version__ = "0.10.0"
99

1010
inst_reqs = [
1111
f"titiler.core=={__version__}",

src/titiler/application/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
inst_reqs = [
99
"rio-cogeo>=3.1,<4.0",
10-
"titiler.core==0.9.0",
11-
"titiler.mosaic==0.9.0",
10+
"titiler.core==0.10.0",
11+
"titiler.mosaic==0.10.0",
1212
"starlette-cramjam>=0.3,<0.4",
1313
"python-dotenv",
1414
]
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.9.0"
3+
__version__ = "0.10.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.9.0"
3+
__version__ = "0.10.0"
44

55
from . import dependencies, errors, factory, routing # noqa
66
from .factory import ( # noqa

src/titiler/mosaic/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
with open("README.md") as f:
66
long_description = f.read()
77

8-
inst_reqs = ["titiler.core==0.9.0", "cogeo-mosaic>=5.0,<5.1"]
8+
inst_reqs = ["titiler.core==0.10.0", "cogeo-mosaic>=5.0,<5.1"]
99
extra_reqs = {
1010
"test": ["pytest", "pytest-cov", "pytest-asyncio", "httpx"],
1111
}
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.9.0"
3+
__version__ = "0.10.0"
44

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

0 commit comments

Comments
 (0)