------- * Can now load :code:`Issuer` from a dictionary via :code:`Issuer.from_dict()` * Can now load :code:`JWTValidator` from a dictionary via :code:`JWTValidator.from_dict()` * Added custom :code:`__repr__()` for * :code:`JWTValidator` * :code:`Issuer` * :code:`SignMethod`
0.0.10
------- * added :code:`not_before_grace_time` as parameter to :code:`JWTValidator.verify_jwt` * Defaults to 30 seconds
0.0.9
------ * Fix Deprecation Warning for :code:`PRIVATE_KEY_TYPES`
0.0.8
------ * verifying the token did not properly check it... * check :code:`exp` claim manualy in :code:`verify_jwt` function * check :code:`nbf` claim manualy in :code:`verify_jwt` function
0.0.7
------ * Bugfix `for key, value in headers.items():` was missing `.items()`
0.0.6
------ * changed `file.read_bytes` to `file.read_bytes()`