Skip to content

Commit

Permalink
Prepare 0.9.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed Jan 20, 2021
1 parent ac90526 commit 3ee0104
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion NEWS
@@ -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.
Expand Down
4 changes: 4 additions & 0 deletions README.adoc
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions RELEASE.adoc
Expand Up @@ -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
Expand Down Expand Up @@ -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 changes: 2 additions & 2 deletions debian/changelog
@@ -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
2 changes: 1 addition & 1 deletion fido2/__init__.py
Expand Up @@ -38,4 +38,4 @@ class ABC(object):
abc.ABC = ABC


__version__ = "0.9.0-dev0"
__version__ = "0.9.0"

0 comments on commit 3ee0104

Please sign in to comment.