Skip to content

Commit f3746d8

Browse files
committed
releasing V1.9.1 with experimental support for stable repos
(particularly useful for Artifact Evaluation)
1 parent b67bdbf commit f3746d8

File tree

5 files changed

+196
-29
lines changed

5 files changed

+196
-29
lines changed

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
* V1.8.7.1
1+
* V1.9.1
22
* added ck.debug_out(i) to print dict to console
33
* fixed strange warnings for Python 3.5+ on Windows and Linux (when installed via pip)
44
* fixed repo renewing on latest Windows (when access error to Git files)
55
* added ck show repo to show git status of all repos
6+
* started highly experimental support for stable repos or different branches/checkouts
7+
(particularly useful for Artifact Evaluation to check out only stable repos)
68

79
* V1.8.7
810
* fixed major bug with default license/author (to avoid crashing when adding new module)

ck/kernel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# CK kernel - we made it monolithic with a minimal set
1111
# of common functions for performance reasons
1212

13-
__version__ = "1.8.7.1" # We use 3 digits for the main (released) version and 4th digit for development revision
14-
# Do not use characters (to detect oudated version)!
13+
__version__ = "1.9.1" # We use 3 digits for the main (released) version and 4th digit for development revision
14+
# Do not use characters (to detect oudated version)!
1515

1616
# Extra modules global for the whole kernel
1717
import sys

ck/repo/module/repo/.cm/meta.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
"renew": {
4343
"desc": "renew repository (remove fully and pull again)"
4444
},
45+
"reset": {
46+
"desc": "reset git repos (default branch)"
47+
},
4548
"rm": {
4649
"desc": "remove repository from CK"
4750
},

0 commit comments

Comments
 (0)