diff --git a/CHANGELOG.md b/CHANGELOG.md index 3764ba38..39657409 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,14 @@ > NOTE: pywa follows the [semver](https://semver.org/) versioning standard. -#### 1.23.0 (2024-07-14) **Latest** +#### 1.24.0 (2024-07-26) **Latest** + +- [server] validating `X-Hub-Signature-256` header +- [requirements] removing `requests` +- [server] default callback url registration delay to 3 sec + + +#### 1.23.0 (2024-07-14) - [client] allowing to manage multiple numbers from the same client (Partner solutions) - [flows] adding `.respond()` shortcut for `FlowRequest` diff --git a/pywa/__init__.py b/pywa/__init__.py index e2b3a9fd..55dbbabb 100644 --- a/pywa/__init__.py +++ b/pywa/__init__.py @@ -9,6 +9,6 @@ from pywa.client import WhatsApp from pywa.utils import Version -__version__ = "1.23.0" +__version__ = "1.24.0" __author__ = "David Lev" __license__ = "MIT"