From 930f901cabbd03ea534f652e63a86c89ae587916 Mon Sep 17 00:00:00 2001 From: "Ajitomi, Daisuke" Date: Sun, 13 Jun 2021 22:51:14 +0900 Subject: [PATCH] Bump version up to v0.10.0. --- CHANGES.rst | 5 +++++ cwt/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index ea5ceb8..c145067 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,11 @@ Changes Unreleased ---------- +Version 0.10.0 +-------------- + +Released 2021-06-13 + - Rename from_json to from_jwk. `#124 `__ - Add support for X25519/X448. `#123 `__ - Add derive_key to EC2Key. `#122 `__ diff --git a/cwt/__init__.py b/cwt/__init__.py index 001de83..6cf3315 100644 --- a/cwt/__init__.py +++ b/cwt/__init__.py @@ -15,7 +15,7 @@ from .recipient import Recipient from .signer import Signer -__version__ = "0.9.0" +__version__ = "0.10.0" __title__ = "cwt" __description__ = "A Python implementation of CWT/COSE" __url__ = "https://python-cwt.readthedocs.io"