Skip to content

Commit 9a8d579

Browse files
committed
Bump version: 0.3.2 → 0.3.3
1 parent 3ee19c3 commit 9a8d579

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

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.3.2
2+
current_version = 0.3.3
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.3.2"
8+
__version__ = "0.3.3"
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.3.2",
23+
version="0.3.3",
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.3.2"
3+
__version__ = "0.3.3"

src/titiler/core/setup.py

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

2828
setup(
2929
name="titiler.core",
30-
version="0.3.2",
30+
version="0.3.3",
3131
description=u"A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.",
3232
long_description=long_description,
3333
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.3.2"
3+
__version__ = "0.3.3"

src/titiler/mosaic/setup.py

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

1717
setup(
1818
name="titiler.mosaic",
19-
version="0.3.2",
19+
version="0.3.3",
2020
description=u"MosaicJSON plugin for TiTiler.",
2121
long_description=long_description,
2222
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.3.2"
3+
__version__ = "0.3.3"

0 commit comments

Comments
 (0)