Skip to content

Commit

Permalink
Bump version: 0.10.1 → 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Dec 17, 2022
1 parent 6d42523 commit f19cf4e
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion deployment/aws/lambda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM --platform=linux/amd64 public.ecr.aws/lambda/python:${PYTHON_VERSION}
WORKDIR /tmp

RUN pip install pip -U
RUN pip install "titiler.application==0.10.1" "mangum>=0.10.0" -t /asset --no-binary pydantic
RUN pip install "titiler.application==0.10.2" "mangum>=0.10.0" -t /asset --no-binary pydantic

# Reduce package size and remove useless files
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;
Expand Down
2 changes: 1 addition & 1 deletion deployment/k8s/charts/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 0.10.1
appVersion: 0.10.2
description: A dynamic Web Map tile server
name: titiler
version: 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.1
current_version = 0.10.2
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
with open("README.md") as f:
long_description = f.read()

__version__ = "0.10.1"
__version__ = "0.10.2"

inst_reqs = [
f"titiler.core=={__version__}",
Expand Down
4 changes: 2 additions & 2 deletions src/titiler/application/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

inst_reqs = [
"rio-cogeo>=3.1,<4.0",
"titiler.core==0.10.1",
"titiler.mosaic==0.10.1",
"titiler.core==0.10.2",
"titiler.mosaic==0.10.2",
"starlette-cramjam>=0.3,<0.4",
"python-dotenv",
]
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/application/titiler/application/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""titiler.application"""

__version__ = "0.10.1"
__version__ = "0.10.2"
2 changes: 1 addition & 1 deletion src/titiler/core/titiler/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""titiler.core"""

__version__ = "0.10.1"
__version__ = "0.10.2"

from . import dependencies, errors, factory, routing # noqa
from .factory import ( # noqa
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/mosaic/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
with open("README.md") as f:
long_description = f.read()

inst_reqs = ["titiler.core==0.10.1", "cogeo-mosaic>=5.0,<5.1"]
inst_reqs = ["titiler.core==0.10.2", "cogeo-mosaic>=5.0,<5.1"]
extra_reqs = {
"test": ["pytest", "pytest-cov", "pytest-asyncio", "httpx"],
}
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/mosaic/titiler/mosaic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""titiler.mosaic"""

__version__ = "0.10.1"
__version__ = "0.10.2"

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

0 comments on commit f19cf4e

Please sign in to comment.