From 9aa9081579a499a45312c15fbcbee2450f305981 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Fri, 10 May 2019 11:29:37 +0200 Subject: [PATCH] Prepare 0.6.0 release. --- NEWS | 5 +++-- Pipfile | 2 +- Pipfile.lock | 15 ++++----------- debian/changelog | 4 ++-- fido2/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 12 insertions(+), 18 deletions(-) diff --git a/NEWS b/NEWS index 5f6e758c..07d58094 100644 --- a/NEWS +++ b/NEWS @@ -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. diff --git a/Pipfile b/Pipfile index 763f4e5f..5f9b72b9 100644 --- a/Pipfile +++ b/Pipfile @@ -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 = "."} diff --git a/Pipfile.lock b/Pipfile.lock index 00f7eae8..9a05333b 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "e3d54798393337b5acd8a2d6d6ffd91e9be1225d993c5dd810e535848512b22f" + "sha256": "7dc184b9dfca959d29b1ce8958d8b4e3b8cde3b9c308562e834bc10d988ae174" }, "pipfile-spec": 6, "requires": {}, @@ -125,18 +125,11 @@ }, "mock": { "hashes": [ - "sha256:5ce3c71c5545b472da17b72268978914d0252980348636840bd34a00b5cc96c1", - "sha256:b158b6df76edd239b8208d481dc46b6afd45a846b7812ff0ce58971cf5bc8bba" + "sha256:83657d894c90d5681d62155c82bda9c1187827525880eda8ff5df4ec813437c3", + "sha256:d157e52d4e5b938c550f39eb2fd15610db062441a9c2747d3dbfa9298211d0f8" ], "index": "pypi", - "version": "==2.0.0" - }, - "pbr": { - "hashes": [ - "sha256:8257baf496c8522437e8a6cfe0f15e00aedc6c0e0e7c9d55eeeeab31e0853843", - "sha256:8c361cc353d988e4f5b998555c88098b9d5964c2e11acf7b0d21925a66bb5824" - ], - "version": "==5.1.3" + "version": "==3.0.5" }, "pyfakefs": { "hashes": [ diff --git a/debian/changelog b/debian/changelog index 87c841fc..6bef55d0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Fri, 21 Dec 2018 13:10:22 +0100 + -- Dain Nilsson Fri, 10 May 2019 12:26:22 +0100 diff --git a/fido2/__init__.py b/fido2/__init__.py index 2f81b45d..9a56754c 100644 --- a/fido2/__init__.py +++ b/fido2/__init__.py @@ -36,4 +36,4 @@ class ABC(object): abc.ABC = ABC -__version__ = '0.6.0-dev0' +__version__ = '0.6.0' diff --git a/setup.py b/setup.py index d9eaab74..ba978b3a 100755 --- a/setup.py +++ b/setup.py @@ -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',