Skip to content

Commit f88e6e2

Browse files
committed
0.4.3 -> 0.5.0
1 parent 05f8dad commit f88e6e2

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

deployment/aws/lambda/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM --platform=linux/amd64 lambci/lambda:build-python3.8
22

33
WORKDIR /tmp
44

5-
RUN pip install titiler.application==0.4.3 mangum>=0.10.0 -t /asset --no-binary pydantic
5+
RUN pip install titiler.application==0.5.0 mangum>=0.10.0 -t /asset --no-binary pydantic
66

77
# Reduce package size and remove useless files
88
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;

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.3
2+
current_version = 0.5.0
33
commit = True
44
tag = True
55
tag_name = {new_version}

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.4.3"
8+
__version__ = "0.5.0"
99

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

src/titiler/application/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name="titiler.application",
23-
version="0.4.3",
23+
version="0.5.0",
2424
description=u"A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.",
2525
long_description=long_description,
2626
long_description_content_type="text/markdown",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.application version."""
22

3-
__version__ = "0.4.3"
3+
__version__ = "0.5.0"

src/titiler/core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
setup(
2626
name="titiler.core",
27-
version="0.4.3",
27+
version="0.5.0",
2828
description=u"A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.",
2929
long_description=long_description,
3030
long_description_content_type="text/markdown",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.core version."""
22

3-
__version__ = "0.4.3"
3+
__version__ = "0.5.0"

src/titiler/mosaic/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name="titiler.mosaic",
16-
version="0.4.3",
16+
version="0.5.0",
1717
description=u"MosaicJSON plugin for TiTiler.",
1818
long_description=long_description,
1919
long_description_content_type="text/markdown",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.mosaic version."""
22

3-
__version__ = "0.4.3"
3+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)