Skip to content

Commit

Permalink
Bump version: 0.4.0a1 → 0.4.0a2
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Nov 24, 2021
1 parent 3b139c2 commit 3dd8806
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion deployment/aws/lambda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM --platform=linux/amd64 lambci/lambda:build-python3.8

WORKDIR /tmp

RUN pip install titiler.application==0.4.0a1 mangum>=0.10.0 -t /asset --no-binary pydantic
RUN pip install titiler.application==0.4.0a2 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
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 0.4.0a1
current_version = 0.4.0a2
commit = True
tag = True
tag_name = {new_version}
parse =
parse =
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<pre>a|b|rc)(?P<prenum>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}{pre}{prenum}
{major}.{minor}.{patch}

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.4.0a1"
__version__ = "0.4.0a2"

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

setup(
name="titiler.application",
version="0.4.0a1",
version="0.4.0a2",
description=u"A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/application/titiler/application/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""titiler.application version."""

__version__ = "0.4.0a1"
__version__ = "0.4.0a2"
2 changes: 1 addition & 1 deletion src/titiler/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="titiler.core",
version="0.4.0a1",
version="0.4.0a2",
description=u"A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/core/titiler/core/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""titiler.core version."""

__version__ = "0.4.0a1"
__version__ = "0.4.0a2"
2 changes: 1 addition & 1 deletion src/titiler/mosaic/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="titiler.mosaic",
version="0.4.0a1",
version="0.4.0a2",
description=u"MosaicJSON plugin for TiTiler.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/titiler/mosaic/titiler/mosaic/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""titiler.mosaic version."""

__version__ = "0.4.0a1"
__version__ = "0.4.0a2"

0 comments on commit 3dd8806

Please sign in to comment.