Skip to content

Commit

Permalink
fixed major bug with kernel version checking
Browse files Browse the repository at this point in the history
  • Loading branch information
gfursin committed Jul 4, 2019
1 parent 5f6fbe0 commit 7687057
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* V1.10.2.1
* fixed bug in testing latest version
* V1.10.3
* fixed major bug with kernel version checking

* V1.10.2
* fixed mistake in PyPi release
Expand Down
4 changes: 2 additions & 2 deletions ck/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
# CK kernel - we made it monolithic with a minimal set
# of common functions for performance reasons

__version__ = "1.10.2.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.10.3" # 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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def run(self):
# Describing CK setup
setup(
name='ck',
version='1.10.2.1',
version='1.10.3',
url='https://github.com/ctuning/ck/wiki',
license='BSD 3-clause',
author='Grigori Fursin and the cTuning foundation',
Expand Down

0 comments on commit 7687057

Please sign in to comment.