From b915870e72031a32ec4cf0c481e8ded9360e6a58 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Mon, 17 Oct 2022 16:09:12 +0200 Subject: [PATCH] Bump version. --- NEWS | 2 ++ RELEASE.adoc | 9 +++++++-- fido2/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 9e5fa46..ecac4d9 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,5 @@ +* Version 1.1.1 (unreleased) + * Version 1.1.0 (released 2022-10-17) ** Bugfix: Fix name of "crossOrigin" in CollectedClientData.create(). ** Bugfix: Some incorrect type hints in the MDS3 classes were fixed. diff --git a/RELEASE.adoc b/RELEASE.adoc index 76ccfc7..3553c48 100644 --- a/RELEASE.adoc +++ b/RELEASE.adoc @@ -33,15 +33,20 @@ * Merge and delete the release branch, and push the tag: - $ git checkout master + $ git checkout main $ git merge --ff release/x.y.z $ git branch -d release/x.y.z $ git push && git push --tags $ git push origin :release/x.y.z * Bump the version number by incrementing the PATCH version and appending -dev.0 - in fido2/__init__.py and add a new entry (unreleased) to the NEWS file. + in pyproject.toml and fido2/__init__.py and add a new entry (unreleased) to the + NEWS file. + # pyproject.toml: + version = "x.y.q-dev.0" + + # fido2/__init__.py: __version__ = 'x.y.q-dev.0' * Commit and push the change: diff --git a/fido2/__init__.py b/fido2/__init__.py index 4ce1fee..7fd3b6c 100644 --- a/fido2/__init__.py +++ b/fido2/__init__.py @@ -26,4 +26,4 @@ # POSSIBILITY OF SUCH DAMAGE. -__version__ = "1.1.0" +__version__ = "1.1.1-dev.0" diff --git a/pyproject.toml b/pyproject.toml index 23ee22b..f71cf6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fido2" -version = "1.1.0" +version = "1.1.1-dev.0" description = "FIDO2/WebAuthn library for implementing clients and servers." authors = ["Dain Nilsson "] homepage = "https://github.com/Yubico/python-fido2"