From 08ee43f6d01ec669b1d2f506705dc7c3d41ac6e7 Mon Sep 17 00:00:00 2001 From: David Lev Date: Tue, 7 Jan 2025 23:46:05 +0200 Subject: [PATCH] [version] fixes 2.5.2 --- CHANGELOG.md | 9 ++++++++- pywa/__init__.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) 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"