From e327e33fe021c536eca71c44683cee4ac5b959f0 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Wed, 8 Jun 2022 09:16:20 +0200 Subject: [PATCH] Prepare release 1.0.0. --- NEWS | 3 +++ fido2/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 0f69c07..05f19e9 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +* Version 1.0.0 (released 2022-06-08) + ** First stable release. + * Version 1.0.0rc1 (released 2022-05-02) ** Release Candidate 1 of first stable release. ** Require Python 3.7 or later. diff --git a/fido2/__init__.py b/fido2/__init__.py index 5ad27c9..969baba 100644 --- a/fido2/__init__.py +++ b/fido2/__init__.py @@ -26,4 +26,4 @@ # POSSIBILITY OF SUCH DAMAGE. -__version__ = "1.0.0rc1" +__version__ = "1.0.0" diff --git a/pyproject.toml b/pyproject.toml index cc55091..e0375db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fido2" -version = "1.0.0rc1" +version = "1.0.0" description = "FIDO2/WebAuthn library for implementing clients and servers." authors = ["Dain Nilsson "] homepage = "https://github.com/Yubico/python-fido2"