From 9ca0cbd0402f320696ca619248ee52d7141fbcda Mon Sep 17 00:00:00 2001 From: David Lev Date: Sat, 14 Dec 2024 22:24:39 +0200 Subject: [PATCH] [version] new version! 2.4.0 --- CHANGELOG.md | 11 ++++++++++- pywa/__init__.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e522d64..0ffc7481 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,16 @@ > NOTE: pywa follows the [semver](https://semver.org/) versioning standard. -### 2.3.0 (2024-11-30) **Latest** +### 2.4.0 (2024-12-14) **Latest** + +- [sent_message] adding `SentTemplate` with `SentTemplateStatus` +- [flows] adding `pattern` for `TextInput` +- [flows] adding support for `NavigationList` +- [flows] defaulting action's payload to empty dict +- [flows] deprecating `ActionNext` and `ActionNextType` + + +### 2.3.0 (2024-11-30) - [client] allowing to specify the callback url scope - [client] expose methods to override callback url in waba and phone scopes diff --git a/pywa/__init__.py b/pywa/__init__.py index 05c5c34e..4131c7fe 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.3.0" +__version__ = "2.4.0" __author__ = "David Lev" __license__ = "MIT"