File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ dict get_libobjcryst_version_info_dict()
42
42
rv[" version_str" ] = libobjcryst_version_info::version_str;
43
43
rv[" major" ] = libobjcryst_version_info::major;
44
44
rv[" minor" ] = libobjcryst_version_info::minor;
45
+ rv[" micro" ] = libobjcryst_version_info::micro;
45
46
rv[" date" ] = libobjcryst_version_info::date;
46
47
rv[" git_sha" ] = libobjcryst_version_info::git_sha;
47
48
return rv;
Original file line number Diff line number Diff line change 38
38
from pyobjcryst ._pyobjcryst import _get_libobjcryst_version_info_dict
39
39
40
40
libobjcryst_version_info = namedtuple ('libobjcryst_version_info' ,
41
- "version version_number major minor date git_sha" )
41
+ "version version_number major minor micro date git_sha" )
42
42
vd = _get_libobjcryst_version_info_dict ()
43
43
libobjcryst_version_info = libobjcryst_version_info (
44
44
version = vd ['version_str' ],
45
45
version_number = vd ['version' ],
46
46
major = vd ['major' ],
47
47
minor = vd ['minor' ],
48
+ micro = vd ['micro' ],
48
49
date = vd ['date' ],
49
50
git_sha = vd ['git_sha' ])
50
51
del vd
You can’t perform that action at this time.
0 commit comments