diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fcd1c0..b1a5f0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,14 @@ > NOTE: pywa follows the [semver](https://semver.org/) versioning standard. -### 2.5.1 (2025-01-02) **Latest** +### 2.5.2 (2025-01-07) **Latest** + +- [handlers] sub-handlers ignoring flow requests with errors when `call_on_error` set to False +- [handlers] fix `WhatsApp.on_flow_request` on class level to mark the `FlowRequestHandler` instance +- [callback] callback data generic can be `str` + + +### 2.5.1 (2025-01-02) - [project] hot fix to include missing files in the package diff --git a/pywa/__init__.py b/pywa/__init__.py index 9a61b79..c5736f4 100644 --- a/pywa/__init__.py +++ b/pywa/__init__.py @@ -9,6 +9,6 @@ from pywa.client import WhatsApp from pywa.utils import Version -__version__ = "2.5.1" +__version__ = "2.5.2" __author__ = "David Lev" __license__ = "MIT"