From 2224059781d789f1728bdc876bae2e0e692535fb Mon Sep 17 00:00:00 2001 From: "Ajitomi, Daisuke" Date: Sun, 18 Apr 2021 01:20:13 +0900 Subject: [PATCH] Fix description of installation. --- CHANGES.rst | 7 +++++++ README.md | 4 ++-- cwt/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 435b50b..54da6fa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,10 @@ +Version 0.1.1 +------------- + +Released 2021-04-18 + +- Fix description of installation. + Version 0.1.0 ------------- diff --git a/README.md b/README.md index 89b38b5..ec9bb15 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,10 @@ A Python (>= 3.6) implementation of CBOR Web Token (CWT) and CBOR Object Signing ## Installing -Install with pip after cloning this repository. +Install with pip: ``` -pip install . +pip install cwt ``` ## Usase diff --git a/cwt/__init__.py b/cwt/__init__.py index 90709f6..40e6c60 100644 --- a/cwt/__init__.py +++ b/cwt/__init__.py @@ -4,7 +4,7 @@ from .exceptions import PyCWTDecodeError, PyCWTEncodeError, PyCWTError from .key_builder import KeyBuilder, cose_key -__version__ = "0.1.0" +__version__ = "0.1.1" __title__ = "cwt" __description__ = "A Python implementation of CWT/COSE" __url__ = "https://python-cwt.readthedocs.io"