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",