Bump version.

This commit is contained in:
Dain Nilsson 2022-10-17 16:09:12 +02:00
parent 08e1c45c93
commit b915870e72
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8
4 changed files with 11 additions and 4 deletions

2
NEWS
View File

@ -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.

View File

@ -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:

View File

@ -26,4 +26,4 @@
# POSSIBILITY OF SUCH DAMAGE.
__version__ = "1.1.0"
__version__ = "1.1.1-dev.0"

View File

@ -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 <dain@yubico.com>"]
homepage = "https://github.com/Yubico/python-fido2"