Skip to content

Commit

Permalink
Prepare 0.6.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed May 10, 2019
1 parent 287e40e commit 9aa9081
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 18 deletions.
5 changes: 3 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
* Version 0.6.0 (unreleased)
* Version 0.6.0 (released 2019-05-10)
** Don't fail if CTAP2 Info contains unknown fields.
** Replace cbor loads/dumps functions with encode/decode/decode_from.
** Server: Add support for AuthenticatorAttachment.
** Client: Expose CTAP2 Info object.
** Server: Add support for more key algorithms.
** Client: Expose CTAP2 Info object as Fido2Client.info.

* Version 0.5.0 (released 2018-12-21)
** Changes to server classes, some backwards breaking.
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ url = "https://pypi.org/simple"

[dev-packages]
"mock" = ">=1.0.1"
"pyfakefs" = ">=2.4"
"pyfakefs" = ">=3.4"

[packages]
"fido2" = {editable = true, path = "."}
Expand Down
15 changes: 4 additions & 11 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
python-fido2 (0.5.0) xenial; urgency=low
python-fido2 (0.6.0) xenial; urgency=low

* Build for ppa

-- Dain Nilsson <dain@yubico.com> Fri, 21 Dec 2018 13:10:22 +0100
-- Dain Nilsson <dain@yubico.com> Fri, 10 May 2019 12:26:22 +0100
2 changes: 1 addition & 1 deletion fido2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ class ABC(object):
abc.ABC = ABC


__version__ = '0.6.0-dev0'
__version__ = '0.6.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_version():
':python_version < "3.4"': ['enum34']
},
test_suite='test',
tests_require=['mock>=1.0.1', 'pyfakefs>=2.4'],
tests_require=['mock>=1.0.1', 'pyfakefs>=3.4'],
classifiers=[
'License :: OSI Approved :: BSD License',
'License :: OSI Approved :: Apache Software License',
Expand Down

0 comments on commit 9aa9081

Please sign in to comment.