From be2e8904e85d02608b48768a7b45066e67986671 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Thu, 6 Jul 2023 15:51:29 +0200 Subject: [PATCH] Prepare 1.1.2. --- NEWS | 4 ++++ fido2/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index dbab3e13..a9cf1c10 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 f3db6a53..ad9cbcb4 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 3452e8d4..899bc77a 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"