From 2913ea543ee1c764fd5857e423878db4d02d48bb Mon Sep 17 00:00:00 2001 From: "Ajitomi, Daisuke" Date: Mon, 9 Aug 2021 10:37:54 +0900 Subject: [PATCH] Bump version up to v1.3.2. --- CHANGES.rst | 5 +++++ cwt/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1849a05..e3490a9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,11 @@ Changes Unreleased ---------- +Version 1.3.2 +-------------- + +Released 2021-08-09 + - Add support for byte-formatted kid on from_jwk(). `#165 `__ - Add sample of EUDCC verifier. `#160 `__ diff --git a/cwt/__init__.py b/cwt/__init__.py index 311921f..1a2fa3e 100644 --- a/cwt/__init__.py +++ b/cwt/__init__.py @@ -16,7 +16,7 @@ from .recipient import Recipient from .signer import Signer -__version__ = "1.3.1" +__version__ = "1.3.2" __title__ = "cwt" __description__ = "A Python implementation of CWT/COSE" __url__ = "https://python-cwt.readthedocs.io"