From 063bc34983c333cbc1cdf68c9e34de5b7840e1e0 Mon Sep 17 00:00:00 2001 From: David Lev Date: Sun, 14 Jul 2024 00:11:11 +0300 Subject: [PATCH] [version] new version: 1.23.0 --- CHANGELOG.md | 17 ++++++++++++----- pywa/__init__.py | 2 +- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79572b5..3764ba3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,14 @@ > NOTE: pywa follows the [semver](https://semver.org/) versioning standard. -#### 1.22.0 (2023-06-16) **Latest** +#### 1.23.0 (2024-07-14) **Latest** + +- [client] allowing to manage multiple numbers from the same client (Partner solutions) +- [flows] adding `.respond()` shortcut for `FlowRequest` +- [flows] allowing body in `FlowResponseError` subclasses + + +#### 1.22.0 (2024-06-16) - [handlers] introducing `FlowRequestCallbackWrapper` to help split flow endpoint logic to multiple handlers - [client] adding `add_flow_request_handler` method to register `FlowRequestHandler`s @@ -11,7 +18,7 @@ - [docs] update examples -#### 1.21.0 (2023-06-14) +#### 1.21.0 (2024-06-14) - [flows] added new components `PhotoPicker`, `DocumentPicker`, `If` and `Switch` - [flows] added `.data_key_of` and `.form_ref_of` to refer from other screens @@ -23,16 +30,16 @@ - [version] bump `FLOW_JSON` version to `4.0` -#### 1.20.2 (2023-06-02) +#### 1.20.2 (2024-06-02) - [server] improve continue/stop handling -#### 1.20.1 (2023-06-02) +#### 1.20.1 (2024-06-02) - [api] fix downloading media content-type -#### 1.20.0 (2023-06-02) +#### 1.20.0 (2024-06-02) - [client] adding official support for async (limited support for now) diff --git a/pywa/__init__.py b/pywa/__init__.py index 5e71548..e2b3a9f 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.22.0" +__version__ = "1.23.0" __author__ = "David Lev" __license__ = "MIT"