From c408983a6cdbac4f9892114c29f5a9100a1c14ba Mon Sep 17 00:00:00 2001 From: Grigori Fursin Date: Tue, 28 Jan 2020 14:59:10 +0000 Subject: [PATCH] fixed UTF-8 issue with README (thanks to Arm colleagues) --- CHANGES.txt | 4 ++-- ck/kernel.py | 4 ++-- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 92eee3abdb..dfc07c1e15 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ -* V1.12.1.1 - * started new version +* V1.12.2 + * fixed UTF-8 problem with README.md in setup.py * V1.12.1 * added first draft of the docs in the Sphinx format diff --git a/ck/kernel.py b/ck/kernel.py index 8e71a2e688..85e6525c1a 100755 --- a/ck/kernel.py +++ b/ck/kernel.py @@ -13,8 +13,8 @@ # For example, we implemented some functions in Java, C, C++ and Fortran # (see our xOpenME library used in Android) -__version__ = "1.12.1.1" # We use 3 digits for the main (released) version and 4th digit for development revision - # Do not use characters (to detect outdated version)! +__version__ = "1.12.2" # We use 3 digits for the main (released) version and 4th digit for development revision + # Do not use characters (to detect outdated version)! # Extra modules global for the whole kernel import sys diff --git a/setup.py b/setup.py index 6742b2c332..0b1f808476 100755 --- a/setup.py +++ b/setup.py @@ -125,7 +125,7 @@ def run(self): description='Collective Knowledge - lightweight knowledge manager to organize, cross-link, share and reuse artifacts and workflows', - long_description=open(convert_path('./README.md')).read(), + long_description=open(convert_path('./README.md'), encoding="utf-8").read(), long_description_content_type="text/markdown", packages=['ck'],