diff --git a/NEWS b/NEWS index dbab3e1..a9cf1c1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +* Version 1.1.2 (released 2023-07-06) + ** Fix ClientPin usage for Authenticators that do not support passing a PIN. + ** Fix: Handle correct CTAP response codes in authenticatorSelection. + * Version 1.1.1 (released 2023-04-05) ** Add community provided support for NetBSD. ** Bugfix: Don't set length for largeBlob when offset is 0. diff --git a/fido2/__init__.py b/fido2/__init__.py index f3db6a5..ad9cbcb 100644 --- a/fido2/__init__.py +++ b/fido2/__init__.py @@ -26,4 +26,4 @@ # POSSIBILITY OF SUCH DAMAGE. -__version__ = "1.1.2-dev.0" +__version__ = "1.1.2" diff --git a/pyproject.toml b/pyproject.toml index 3452e8d..899bc77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fido2" -version = "1.1.2-dev.0" +version = "1.1.2" description = "FIDO2/WebAuthn library for implementing clients and servers." authors = ["Dain Nilsson "] homepage = "https://github.com/Yubico/python-fido2"