chore: prepare release 0.11.x

pull/138/head
Florian Ludwig 2023-02-08 11:37:36 +01:00
rodzic 3bf29cff4c
commit fda35f3e18
3 zmienionych plików z 11 dodań i 4 usunięć

Wyświetl plik

@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2

Wyświetl plik

@ -5,8 +5,9 @@ Changelog
-----------------
* removed hbmqtt compatibility, importing amqtt is now mandatory
* removed loop parameter from all functions
* Python 3.10 compatibility
* Python 3.8 to 3.10 compatibility
* Fixed a major bug in plugin api, see https://github.com/Yakifo/amqtt/pull/92
* Fixed a major bug due to CancelledError semantics changed in Python 3.8, see https://github.com/Yakifo/amqtt/pull/134
0.10.0 - 2021-08-04
-------------------

Wyświetl plik

@ -66,13 +66,19 @@ From there the goal is to fix outstanding known issues and clean up the code.
+----------+---------------------------+----------------------------+--------------+
| Version | hbmqtt compatibility | Supported Python Versions | PyPi Release |
+----------+---------------------------+----------------------------+--------------+
| 0.10.x | YES - Drop-in Replacement | 3.7 - 3.9 | 0.10.1 |
| 0.10.x | YES - Drop-in Replacement | 3.7* | 0.10.1 |
+----------+---------------------------+----------------------------+--------------+
| 0.11.x | NO - Module renamed | 3.7 - 3.10 | No release |
| 0.11.x | NO - Module renamed | 3.8 - 3.10 | No release |
| | and small API differences | | yet |
+----------+---------------------------+----------------------------+--------------+
* Due to a change in Python 3.8 where the semantics of asyncio.CancelledError was changed
to be a subclass of BaseException instead of Exception, old versions of hbmqtt and aMQTT
will break, see https://github.com/Yakifo/amqtt/issues/133.
Therefore only 3.7 is mentioned as supported version for 0.10.x.
Getting started
---------------