From 055ce12bdaa27a58634fe5957dc05bbe998842aa Mon Sep 17 00:00:00 2001 From: Sean Gillies Date: Thu, 17 May 2018 15:42:08 -0600 Subject: [PATCH 1/3] prep for 1.0.3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 25f461a..d5f4528 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ readme = f.read() setup(name='mercantile', - version='1.0.2', + version='1.0.3', description="Web mercator XYZ tile utilities", long_description=readme, classifiers=[ From 637c3cf7678cbe17773220754189a6bf63343d0f Mon Sep 17 00:00:00 2001 From: Sean Gillies Date: Thu, 17 May 2018 15:43:13 -0600 Subject: [PATCH 2/3] Update __init__.py --- mercantile/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mercantile/__init__.py b/mercantile/__init__.py index 0c3fe0f..61ff24c 100644 --- a/mercantile/__init__.py +++ b/mercantile/__init__.py @@ -5,7 +5,7 @@ import math -__version__ = '1.0.2' +__version__ = '1.0.3' __all__ = [ 'Bbox', 'LngLat', 'LngLatBbox', 'Tile', 'bounding_tile', 'bounds', From 68d73eb544c2d152f05b82cf654ae204f71e1a1c Mon Sep 17 00:00:00 2001 From: Sean Gillies Date: Thu, 17 May 2018 15:44:51 -0600 Subject: [PATCH 3/3] Update CHANGES.txt --- CHANGES.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 2054ffe..5b695b0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,11 @@ Changes ======= +1.0.3 (2018-05-08) +------------------ + +- Support a single zoom value passed to ``tiles()`` as advertised (#78). + 1.0.2 (2018-05-08) ------------------