From 9a137cdd0f94eab309df17f2b82f9eba58d6c978 Mon Sep 17 00:00:00 2001 From: "Ajitomi, Daisuke" Date: Tue, 11 May 2021 18:52:05 +0900 Subject: [PATCH] Bump version up to v0.7.1. --- CHANGES.rst | 5 +++++ cwt/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index beb9f0a..ffd576c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,11 @@ Changes Unreleased ---------- +Version 0.7.1 +------------- + +Released 2021-05-11 + - Add alg validation and fix related bug. `#77 `__ - Update protected/unprotected default value from {} to None. `#76 `__ diff --git a/cwt/__init__.py b/cwt/__init__.py index 125f721..0ee8af8 100644 --- a/cwt/__init__.py +++ b/cwt/__init__.py @@ -15,7 +15,7 @@ from .key_builder import KeyBuilder, cose_key from .recipient import Recipient -__version__ = "0.7.0" +__version__ = "0.7.1" __title__ = "cwt" __description__ = "A Python implementation of CWT/COSE" __url__ = "https://python-cwt.readthedocs.io"