14
0

- Upgrade to 1.4.0:

* Added decorator functionality to Signal as a convenient way to add a
    callback
  * Improved type safety by allowing callback parameters to be type checked
    (typing-extensions is now required for Python <3.13). Parameters for a
    Signal callback should now be defined like Signal[int, str]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiosignal?expand=0&rev=12
This commit is contained in:
2025-07-10 04:53:39 +00:00
committed by Git OBS Bridge
parent 9fbeb93b44
commit 79cc2ce163
4 changed files with 19 additions and 5 deletions

View File

@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Thu Jul 10 04:53:25 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Upgrade to 1.4.0:
* Added decorator functionality to Signal as a convenient way to add a
callback
* Improved type safety by allowing callback parameters to be type checked
(typing-extensions is now required for Python <3.13). Parameters for a
Signal callback should now be defined like Signal[int, str]
-------------------------------------------------------------------
Fri Jun 13 05:35:05 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>