diff --git a/NEWS b/NEWS index 0f69c077..05f19e98 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 5ad27c9a..969baba1 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 cc55091a..e0375dbc 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"