From d62250eb4ca53c5b9c83cb10c30c121c3da25dee Mon Sep 17 00:00:00 2001 From: Sean Gillies Date: Wed, 21 Apr 2021 08:36:07 -0600 Subject: [PATCH] Add missing comma --- CHANGES.txt | 6 ++++++ mercantile/__init__.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index c95a876..b913dc5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,12 @@ Changes ======= +1.2.1 (2021-04-21) +------------------ + +- A missing comma in the ``__all__`` list caused the neighbors and parent + method to drop out of the module documentation (#135). + 1.2.0 (2021-04-19) ------------------ diff --git a/mercantile/__init__.py b/mercantile/__init__.py index f9ffab1..35eb28d 100644 --- a/mercantile/__init__.py +++ b/mercantile/__init__.py @@ -28,7 +28,7 @@ def fake_decorator(func): from functools import lru_cache -__version__ = "1.2.0" +__version__ = "1.2.1" __all__ = [ "Bbox", @@ -40,7 +40,7 @@ def fake_decorator(func): "children", "feature", "lnglat", - "neighbors" + "neighbors", "parent", "quadkey", "quadkey_to_tile",