Skip to content

Commit

Permalink
Bump version: 0.3.0 → 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Apr 27, 2021
1 parent 85087a8 commit 856b379
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
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.3.0
current_version = 0.3.1
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.3.0"
__version__ = "0.3.1"

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

setup(
name="titiler.application",
version="0.3.0",
version="0.3.1",
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 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.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion titiler/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

setup(
name="titiler.core",
version="0.3.0",
version="0.3.1",
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 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.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion titiler/mosaic/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name="titiler.mosaic",
version="0.3.0",
version="0.3.1",
description=u"MosaicJSON plugin for TiTiler.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion 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.3.0"
__version__ = "0.3.1"

0 comments on commit 856b379

Please sign in to comment.