From e253c015f69dd9c5d7c1ee800fb53a8f0a8730d5 Mon Sep 17 00:00:00 2001 From: David Lev Date: Mon, 20 Nov 2023 00:25:49 +0200 Subject: [PATCH] [version 1.12.0] New version! --- CHANGELOG.md | 9 +++++++++ pywa/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 238ab0ab..432d3aa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ Changelog NOTE: pywa follows the [semver](https://semver.org/) versioning standard. +### 1.12.0 (2023-11-20) + +- [reply_to_msg] adding `ReferredProduct` to message context +- [filters] adding filter for messages that has `referred_product` in their context +- [types] unfrozen editable types +- [base_update] hash updates by their update ID +- [client] adding `dl_session` param of type `requests.Session` to `.upload_media` when uploading locally from URL +- [errors] adding more `template` and `flow` exceptions; fix typo in `TooManyMessages` + ### 1.11.1 (2023-11-07) - [reaction] hot-fix for reaction when "unreacting" to a message diff --git a/pywa/__init__.py b/pywa/__init__.py index a0afd6d8..fdc61a04 100644 --- a/pywa/__init__.py +++ b/pywa/__init__.py @@ -7,6 +7,6 @@ from pywa.client import WhatsApp -__version__ = "1.11.1" +__version__ = "1.12.0" __author__ = "David Lev" __license__ = "MIT"