From a882717c6d3ffcd0935a8fdd200181f80415c02e Mon Sep 17 00:00:00 2001 From: David Lev Date: Sun, 14 Jan 2024 02:40:07 +0200 Subject: [PATCH] [version] New version: 1.15.0 --- CHANGELOG.md | 12 ++++++++++++ pywa/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e07e18a..947a7761 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ Changelog NOTE: pywa follows the [semver](https://semver.org/) versioning standard. +### 1.15.0 (2024-01-14) + +- [client] Added `register_phone_number` method +- [client] mark the `body` arg in send image/video/doc as deprecated. use `caption` instead +- [utils] bump `FLOW_JSON` version to 3.1 +- [flows] allow `DataSource` in `FlowResponse` data +- [flows] `Image` .src can be dynamic +- [flows] default `ActionNext` to SCREEN +- [flows] adding `.success` for screen and adding in-docs examples + + + ### 1.14.0 (2024-01-01) - [flows] define `Form` `init_values` from children `init_value` diff --git a/pywa/__init__.py b/pywa/__init__.py index 4e42223e..3183292a 100644 --- a/pywa/__init__.py +++ b/pywa/__init__.py @@ -7,6 +7,6 @@ from pywa.client import WhatsApp -__version__ = "1.14.0" +__version__ = "1.15.0" __author__ = "David Lev" __license__ = "MIT"