From c18ebd8b19f1c83d58fd3a37de726084b9afd2a3 Mon Sep 17 00:00:00 2001 From: David Lev Date: Fri, 29 Nov 2024 00:03:39 +0200 Subject: [PATCH] [version] new version! 2.2.0 --- CHANGELOG.md | 9 ++++++++- pywa/__init__.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f6ee64c..e292ee76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,14 @@ > NOTE: pywa follows the [semver](https://semver.org/) versioning standard. -### 2.1.0 (2024-11-24) **Latest** +### 2.2.0 (2024-11-29) **Latest** + +- [flows] adding `ScreenDataUpdate` to use in `UpdateDataAction` +- [flows] using math operators between math objs +- [flows] renaming `ActionNext` to `Next` and `ActionNextType` to `NextType` + + +### 2.1.0 (2024-11-24) - [flows] adding `CalendarPicker` component - [flows] allow string concatenation with refs diff --git a/pywa/__init__.py b/pywa/__init__.py index 013674d2..fd2ddeca 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.1.0" +__version__ = "2.2.0" __author__ = "David Lev" __license__ = "MIT"