From 73af895f11ebd2341aa764f032d5a3e68942a1e8 Mon Sep 17 00:00:00 2001 From: Jonah Bron Date: Mon, 18 Mar 2024 05:32:31 +0000 Subject: [PATCH] pyjwt: Incremented package version and added a brief description. Signed-off-by: Jonah Bron --- python-ecosys/pyjwt/manifest.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/python-ecosys/pyjwt/manifest.py b/python-ecosys/pyjwt/manifest.py index b3de5efc9..ee03673d7 100644 --- a/python-ecosys/pyjwt/manifest.py +++ b/python-ecosys/pyjwt/manifest.py @@ -1,4 +1,13 @@ -metadata(version="0.1.0", pypi="pyjwt") +metadata( + version="0.2.0", + pypi="pyjwt", + description=""" +JWT library for MicroPython. Supports HMAC (HS256) encoding essentially. +Optionally supports ECDSA (ES256) asymmetric-key signing/verification when the +[dmazella/ucryptography](https://github.com/dmazzella/ucryptography/) library +is available in the MicroPython firmware. +""", +) require("hmac")