Prepare 0.9.0 release.

This commit is contained in:
Dain Nilsson 2021-01-20 10:38:52 +01:00
parent ac90526f1e
commit 3ee0104351
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8
5 changed files with 13 additions and 4 deletions

2
NEWS
View File

@ -1,4 +1,4 @@
* Version 0.9.0 (unreleased)
* Version 0.9.0 (released 2021-01-20)
** Server: Attestation is now done in two parts (to align better with the spec):
First, type-specific validation is done to provide a trust chain.
Second, validation of the trust chain is done.

View File

@ -7,6 +7,10 @@ well as verifying attestation and assertion signatures.
WARNING: This project is in beta. Expect things to change or break at any time!
WARNING: Version 0.9 is the last planned version of this library which will
support Python 2. The next major version planned is 1.0, which will require
Python 3 or later.
This library aims to support the FIDO U2F and FIDO 2.0 protocols for
communicating with a USB authenticator via the Client-to-Authenticator Protocol
(CTAP 1 and 2). In addition to this low-level device access, classes defined in

View File

@ -5,6 +5,7 @@
* Update the version in fido/__init__.py and make sure the NEWS file has an
entry for it, and the correct release date.
* Update the debian/changelog file with the correct version.
* Commit the changes, and push the new branch.
$ git push -u origin release/x.y.z
@ -44,6 +45,10 @@
__version__ = 'x.y.q-dev0'
* Bump the version in debian/changelog by appending `+git` to it.
(x.y.q+git)
* Commit and push the change:
$ git commit -a -m "Bump version." && git push

4
debian/changelog vendored
View File

@ -1,5 +1,5 @@
python-fido2 (0.8.1+git) xenial; urgency=low
python-fido2 (0.9.0) xenial; urgency=low
* Build for ppa
-- Dain Nilsson <dain@yubico.com> Mon, 25 Nov 2019 13:07:14 +0100
-- Dain Nilsson <dain@yubico.com> Wed, 20 Jan 2021 10:41:13 +0100

View File

@ -38,4 +38,4 @@ if six.PY2:
abc.ABC = ABC
__version__ = "0.9.0-dev0"
__version__ = "0.9.0"