Skip to content

Commit

Permalink
Bump version: 0.3.2 → 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Jun 29, 2021
1 parent 3ee19c3 commit 9a8d579
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.2
current_version = 0.3.3
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.2"
__version__ = "0.3.3"

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.3.2",
version="0.3.3",
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.3.2"
__version__ = "0.3.3"
2 changes: 1 addition & 1 deletion src/titiler/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

setup(
name="titiler.core",
version="0.3.2",
version="0.3.3",
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.3.2"
__version__ = "0.3.3"
2 changes: 1 addition & 1 deletion src/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.2",
version="0.3.3",
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.3.2"
__version__ = "0.3.3"

0 comments on commit 9a8d579

Please sign in to comment.