Skip to content

Commit

Permalink
Started new version
Browse files Browse the repository at this point in the history
  • Loading branch information
gfursin committed Jan 27, 2020
1 parent 6c46e7d commit 60a7c7e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions ck/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',

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'},
Expand Down

0 comments on commit 60a7c7e

Please sign in to comment.