Skip to content

Commit 11b6f03

Browse files
committed
Bump version: 0.4.0a0 → 0.4.0a1
1 parent 1a4946b commit 11b6f03

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
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==0.4.0a0 mangum>=0.10.0 -t /asset --no-binary pydantic
5+
RUN pip install titiler==0.4.0a1 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.4.0a0
2+
current_version = 0.4.0a1
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.4.0a0"
8+
__version__ = "0.4.0a1"
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.0a0",
23+
version="0.4.0a1",
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.0a0"
3+
__version__ = "0.4.0a1"

src/titiler/core/setup.py

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

2424
setup(
2525
name="titiler.core",
26-
version="0.4.0a0",
26+
version="0.4.0a1",
2727
description=u"A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.",
2828
long_description=long_description,
2929
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.0a0"
3+
__version__ = "0.4.0a1"

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.0a0",
16+
version="0.4.0a1",
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.0a0"
3+
__version__ = "0.4.0a1"

0 commit comments

Comments
 (0)