Skip to content

Commit

Permalink
[version] New RC version: 1.13.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
david-lev committed Dec 14, 2023
1 parent 75eb64b commit 8daa7a0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Changelog

NOTE: pywa follows the [semver](https://semver.org/) versioning standard.

### 1.13.0-rc.2 (2023-12-14)

- [base_update] adding `.raw` attr to hold the original update
- [requirements] set `cryptography` as extra dependency

### 1.13.0-rc.1 (2023-12-14)

- [flows] Adding beta support for [WhatsApp Flows](https://business.whatsapp.com/products/whatsapp-flows)!
Expand Down
11 changes: 8 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,14 @@ ________________________

.. code-block:: bash
pip3 install -U pywa[flask]
pip3 install -U pywa[fastapi]
pip3 install -U "pywa[flask]"
pip3 install -U "pywa[fastapi]"
- **If you going to use the Flow features and want to use the default FlowRequestDecryptor and the default FlowResponseEncryptor, here is shortcut to install the required dependencies:**

.. code-block:: bash
pip3 install -U "pywa[cryptography]"
.. end-installation
Expand All @@ -167,7 +173,6 @@ See the `Documentation <https://pywa.readthedocs.io/>`_ for detailed instruction
☑️ **TODO**
------------

- Add support for Flows
- Add support for async
- Add support for more web frameworks (``Django``, ``Starlette``, etc.)
- Add support for more types of updates (``account_alerts``, ``phone_number_quality_updates``, ``template_category_updates``, etc.)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/content/flows/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
The ``Flows`` in pywa are still in beta and not fully tested.
Install the RC version of pywa to use it:

>>> pip3 install "pywa[cryptography]==1.13.0rc1"
>>> pip3 install "pywa[cryptography]==1.13.0rc2"

The ``cryptography`` extra is required for the default implementation of the decryption and encryption of the flow requests and responses.

Expand Down
2 changes: 1 addition & 1 deletion pywa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

from pywa.client import WhatsApp

__version__ = "1.13.0-rc.1"
__version__ = "1.13.0-rc.2"
__author__ = "David Lev"
__license__ = "MIT"

0 comments on commit 8daa7a0

Please sign in to comment.