Skip to content

Commit

Permalink
Update changelog and update version number to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Aug 18, 2022
1 parent 2580a1f commit d41af3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changes
=======

0.2.3 (2022-xx-xx)
0.2.3 (2022-08-18)
------------------

- Check size of integer values given to `jenks_breaks` function to avoid Segfault when casting to C double (fixes #23).
Expand All @@ -10,9 +10,9 @@ Changes

- Raise an error when the target numpy.ndarray is not one-dimensional (fixes #25).

- Improve implementation of `JenksBreakValues` C function by using better variable naming,
by using the same array size than in most implementation and by simplifying the construction
of the 'breaks' array (should partly fix #22).
- Improve implementation of `JenksBreakValues` C function by using better variable naming and by simplifying the construction of the 'breaks' array (should partly fix #22).

- Add docstrings to `JenksNaturalBreaks` methods.


0.2.2 (2022-08-12)
Expand Down
2 changes: 1 addition & 1 deletion jenkspy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__version__ = "0.2.2"
__version__ = "0.2.3"

from .core import jenks_breaks
from .core import JenksNaturalBreaks
Expand Down

0 comments on commit d41af3f

Please sign in to comment.