diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7791a8c..d24f3bf 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,9 @@ Changelog ========= +v8.0.1 (2024-04-26) +------------------- + - Fix issue where too many arguments were passed to stdlib's ``operator.attrgetter``, ``operator.itemgetter``, and ``operator.methodcaller`` when instances of those classes were used as callbacks to functions like ``map_``, ``filter_``, etc. due to a bug introduced in Python 3.12.3 and 3.11.9 that reported an incorrect signature for those ``operator`` class instances. diff --git a/src/pydash/__init__.py b/src/pydash/__init__.py index 73a0c1d..117928f 100644 --- a/src/pydash/__init__.py +++ b/src/pydash/__init__.py @@ -1,6 +1,6 @@ """Python port of Lo-Dash.""" -__version__ = "8.0.0" +__version__ = "8.0.1" from .arrays import ( chunk,