Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
coroa committed Aug 23, 2024
1 parent f9a749c commit 94edc56
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Changelog
=========

* Improve :mod:`~selectors` to arbitrarily interact with boolean Series, numpy arrays
and callables, ie.
1. ``pd.Series([True, False]) & isin(model="a")`` produces the same result as
``isin(model="a") & pd.Series([True, False])`` did earlier.
2. ``isin(model="a") & (lambda s: s > 2)`` is now supported as well.
* Fix a testing incompability introduced by a recent attrs update (24.1.0)
* Load pint and pint-pandas packages only on first use

v0.5.1 (2024-05-20)
Expand Down

0 comments on commit 94edc56

Please sign in to comment.