From fa3de529890b49c2d212d360b9e9558ae65ad236 Mon Sep 17 00:00:00 2001 From: Marcin Anforowicz Date: Tue, 9 Jul 2024 09:27:05 -0700 Subject: [PATCH 1/3] Added py.typed to project --- pycyphal/py.typed | 0 setup.cfg | 3 +++ 2 files changed, 3 insertions(+) create mode 100644 pycyphal/py.typed diff --git a/pycyphal/py.typed b/pycyphal/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/setup.cfg b/setup.cfg index 2bb0c1bf1..0c580f5d0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -70,6 +70,9 @@ include = pycyphal.* [options.package_data] +# Include the py.typed file for the pycyphal package +pycyphal = py.typed + # jingle bells jingle bells # jingle all the way * = From 34352c80b69e8031e213f659115fc760b954a798 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Tue, 9 Jul 2024 22:08:03 +0300 Subject: [PATCH 2/3] Update _version.py --- pycyphal/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycyphal/_version.py b/pycyphal/_version.py index 90fa0968e..0dcddbc87 100644 --- a/pycyphal/_version.py +++ b/pycyphal/_version.py @@ -1 +1 @@ -__version__ = "1.19.1" +__version__ = "1.20.0" From 9709fb8d15ad4d791e7808e5c9dcc46cbfb434d1 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Tue, 9 Jul 2024 22:09:55 +0300 Subject: [PATCH 3/3] Update CHANGELOG.rst --- CHANGELOG.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0d5f723bf..19db3c3f5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,12 +3,17 @@ Changelog ========= +v1.20 +----- +- Add the `py.typed` annotation (`#343 `_). + v1.19 ----- - Implement configure_acceptance_filters for socketcan. - **v1.19.1:** - Fix socketcan timestamp on newer 32 bit kernel. + + - Fix socketcan timestamp on newer 32 bit kernel. v1.18 ----- @@ -179,7 +184,6 @@ v1.2 - In ``pyuavcan.dsdl``: rename ``generate_package`` into ``compile``, add ``compile_all``. - v1.1 ----