diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e07e18..947a776 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 4e42223..3183292 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"