From fa1f6b9aa0e341641f8bba6c20bb04dce26d9d1e Mon Sep 17 00:00:00 2001 From: David Lev Date: Wed, 25 Oct 2023 21:20:13 +0300 Subject: [PATCH] [version 1.9.0] New version! --- CHANGELOG.md | 6 ++++++ pywa/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f858869..f7821ba9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ Changelog NOTE: pywa follows the [semver](https://semver.org/) versioning standard. +### 1.9.0 (2023-10-25) + +- [handlers] add `StopHandling` to raise if you want to stop handling the update +- [errors] include `requests.Response` with all api errors +- [client] mark `keyboard` argument in `.send_message` as deprecated. use `buttons` instead + ### 1.8.0 (2023-10-20) - [webhook] allow to register callback url by @david-lev in #18 diff --git a/pywa/__init__.py b/pywa/__init__.py index da7b4b2e..2c413931 100644 --- a/pywa/__init__.py +++ b/pywa/__init__.py @@ -7,6 +7,6 @@ from pywa.client import WhatsApp -__version__ = "1.8.0" +__version__ = "1.9.0" __author__ = "David Lev" __license__ = "MIT"