diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..ae7ebbe --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,3 @@ +0.8.3.2: + - Added a CHANGELOG file. + - Added description about version numbering. diff --git a/bin/uplink b/bin/uplink index 2eb5f1d..a45d852 100755 --- a/bin/uplink +++ b/bin/uplink @@ -37,9 +37,17 @@ import time from uplink.configuration import Configuration from uplink.uplink import Uplink -# According to: https://wiki.unixpeople.org/linux_kernel_version_numbering -# MAJOR_RELEASE.MAJOR_CHANGES.MINOR_CHANGES.BUG_FIXES -__version__ = '0.8.3.0' +""" +According to: https://wiki.unixpeople.org/linux_kernel_version_numbering +MAJOR.FEATURE.MINOR.FIXES +MAJOR changes can change the API. The lesser, the better. +FEATURE changes can, but should not break the API. New features are placed here. It expects a +complete documentation. +MINOR changes are "just-in-time" changes or small enhancements which should not affect the +documentation. +FIXES should never affect anything else then stability or security. +""" +__version__ = '0.8.3.2' __author__ = 'Johannes Findeisen ' logger = logging.getLogger('uplink')