diff --git a/NEWS b/NEWS index 40f5ea7..dbab3e1 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -* Version 1.1.1 (unreleased) +* 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. ** Bugfix: Remove print statement in webauthn parsing. diff --git a/fido2/__init__.py b/fido2/__init__.py index 7fd3b6c..bb38f03 100644 --- a/fido2/__init__.py +++ b/fido2/__init__.py @@ -26,4 +26,4 @@ # POSSIBILITY OF SUCH DAMAGE. -__version__ = "1.1.1-dev.0" +__version__ = "1.1.1" diff --git a/pyproject.toml b/pyproject.toml index a548dcb..5f38ec2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fido2" -version = "1.1.1-dev.0" +version = "1.1.1" description = "FIDO2/WebAuthn library for implementing clients and servers." authors = ["Dain Nilsson "] homepage = "https://github.com/Yubico/python-fido2"