diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ac4542..b3a4502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,16 @@ > NOTE: pywa follows the [semver](https://semver.org/) versioning standard. -### 2.6.0 (2025-01-11) **Latest** + +### 2.7.0 (2025-01-18) **Latest** + +- [flows] adding support for `ChipsSelector` component +- [flows] `flow_name` instead of `flow_id` while sending. `flow_token` is now optional +- [client] allowing to create flow with flow json and publish it with one request +- [utils] update flow json latest version to 6.3 + + +### 2.6.0 (2025-01-11) - [base_update] adding `shared_data` to help sharing context between handlers & filters - [flows] adding `FlowStr` - A helper class to create strings containing vars and math expressions without escaping and quoting them diff --git a/pywa/__init__.py b/pywa/__init__.py index cd9c7c3..055a2e2 100644 --- a/pywa/__init__.py +++ b/pywa/__init__.py @@ -9,6 +9,6 @@ from pywa.client import WhatsApp from pywa.utils import Version -__version__ = "2.6.0" +__version__ = "2.7.0" __author__ = "David Lev" __license__ = "MIT"