Skip to content

Commit

Permalink
update release notes, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
esheldon committed Aug 20, 2024
1 parent bae187d commit 95abee4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.6.15 (not yet released)
------

Enhancements

- numpy_util.match works for data types other than int

0.6.14
------

Expand Down
2 changes: 1 addition & 1 deletion esutil/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class for gauss-legendre integration, which relies on the gauleg C++ extension.

import sys

__version__ = "0.6.14"
__version__ = "0.6.15"

def version():
return __version__
Expand Down
3 changes: 2 additions & 1 deletion esutil/numpy_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1512,7 +1512,8 @@ def match(arr1input, arr2input, presorted=False):
Match two arrays, returning the indicies of matches for each array, or
empty arrays if no matches are found. This means arr1[ind1] == arr2[ind2]
is true for all corresponding pairs. For floating-point data this implies
exact matching with no floating-point tolerance.
exact matching with no floating-point tolerance. The data type can be
string or bytes.
arr1 must contain only unique inputs, but arr2 may be non-unique.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def build_extensions(self):

setup(
name="esutil",
version="0.6.14",
version="0.6.15",
author="Erin Scott Sheldon",
author_email="erin.sheldon@gmail.com",
classifiers=classifiers,
Expand Down

0 comments on commit 95abee4

Please sign in to comment.