From 60a7c7efaeab5a336e6c7937e443af8b9e658244 Mon Sep 17 00:00:00 2001 From: Grigori Fursin Date: Mon, 27 Jan 2020 14:19:05 +0000 Subject: [PATCH] Started new version --- CHANGES.txt | 3 +++ ck/kernel.py | 4 ++-- setup.py | 8 +++++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 1267f9e88a..92eee3abdb 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,6 @@ +* V1.12.1.1 + * started new version + * V1.12.1 * added first draft of the docs in the Sphinx format * fixed repo update diff --git a/ck/kernel.py b/ck/kernel.py index ba58854ab9..8e71a2e688 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" # 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.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)! # Extra modules global for the whole kernel import sys diff --git a/setup.py b/setup.py index e86cad6efd..6742b2c332 100755 --- a/setup.py +++ b/setup.py @@ -115,12 +115,18 @@ def run(self): setup( name='ck', version=current_version, - url='https://github.com/ctuning/ck/wiki', + + url='https://github.com/ctuning/ck', + license='BSD 3-clause', + author='Grigori Fursin and the cTuning foundation', author_email='Grigori.Fursin@cTuning.org', + 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_content_type="text/markdown", packages=['ck'], package_dir={'ck': 'ck'},