From c6da7bd525a3f7a9ca0fd85f5f6571aebd465f7c Mon Sep 17 00:00:00 2001 From: Matthieu Viry Date: Fri, 12 Aug 2022 18:43:58 +0200 Subject: [PATCH] Update changelog and increment version to 0.2.2 --- CHANGES.rst | 6 ++++++ jenkspy/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9764a6b..9774c6d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changes ======= +0.2.2 (2022-08-12) +------------------ + +- Update docstring to fix return type of `jenks_breaks` (fix #26). + + 0.2.1 (2022-08-12) ------------------ diff --git a/jenkspy/__init__.py b/jenkspy/__init__.py index 418f54a..4374037 100644 --- a/jenkspy/__init__.py +++ b/jenkspy/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__version__ = "0.2.1" +__version__ = "0.2.2" from .core import jenks_breaks from .core import JenksNaturalBreaks