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"