From d8de3437c2a3ffdd99994d15ae8c49867c39789c Mon Sep 17 00:00:00 2001 From: yehuda-lev <94082865+yehuda-lev@users.noreply.github.com> Date: Sun, 22 Sep 2024 01:47:11 +0300 Subject: [PATCH] [version] new version: 1.26.0 --- CHANGELOG.md | 11 ++++++++++- pywa/__init__.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b6dbde9..b9205af2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,16 @@ > NOTE: pywa follows the [semver](https://semver.org/) versioning standard. -#### 1.25.0 (2024-08-15) **Latest** +#### 1.26.0 (2024-09-22) **Latest** + +- [flows] adding support of `RichText` +- [flows] adding support of `markdown` in `TextBody` and `TextCaption` +- [flows] adding `sensitive` attr to Screen, allowing to hide specific fields from the response summary +- [client] adding `reply_to_message` arg to `send_location`, `request_location`, `send_sticker`, and `send_audio` +- [message] adding `reply_location_request` + + +#### 1.25.0 (2024-08-15) - [handlers] adding priority - [client] adding QR methods (create update get and delete) diff --git a/pywa/__init__.py b/pywa/__init__.py index b51f350d..64c55999 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.25.0" +__version__ = "1.26.0" __author__ = "David Lev" __license__ = "MIT"