diff --git a/NEWS b/NEWS index 74b6d22..72fdf3e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* Version 0.9.3 (released 2021-11-09) + ** Bugfix: Linux - Don't fail device discovery when hidraw doesn't support + HIDIOCGRAWUNIQ (Linux kernels before 5.6). + * Version 0.9.2 (released 2021-10-14) ** Support the latest Windows webauthn.h API (included in Windows 11). ** Add product name and serial number to HidDescriptors. diff --git a/debian/changelog b/debian/changelog index 2fc7c68..a1e33f9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,5 @@ -python-fido2 (0.9.2+git) xenial; urgency=low +python-fido2 (0.9.3) xenial; urgency=low * Build for ppa - -- Dain Nilsson Thu, 14 Oct 2021 12:31:19 +0100 + -- Dain Nilsson Tue, 09 Nov 2021 12:14:10 +0100 diff --git a/fido2/__init__.py b/fido2/__init__.py index a3427bb..80d6780 100644 --- a/fido2/__init__.py +++ b/fido2/__init__.py @@ -38,4 +38,4 @@ class ABC(object): abc.ABC = ABC -__version__ = "0.9.3-dev0" +__version__ = "0.9.3"