From 2a89f789da29e2019612929c19018f48bb18e823 Mon Sep 17 00:00:00 2001 From: Derrick Gilland Date: Fri, 26 Apr 2024 09:20:06 -0400 Subject: [PATCH] release: v8.0.1 --- CHANGELOG.rst | 3 +++ src/pydash/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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,