Added CHANGELOG and description about version numbering.
This commit is contained in:
parent
71b118afd1
commit
b114befaff
2 changed files with 14 additions and 3 deletions
3
CHANGELOG
Normal file
3
CHANGELOG
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
0.8.3.2:
|
||||||
|
- Added a CHANGELOG file.
|
||||||
|
- Added description about version numbering.
|
||||||
14
bin/uplink
14
bin/uplink
|
|
@ -37,9 +37,17 @@ import time
|
||||||
from uplink.configuration import Configuration
|
from uplink.configuration import Configuration
|
||||||
from uplink.uplink import Uplink
|
from uplink.uplink import Uplink
|
||||||
|
|
||||||
# According to: https://wiki.unixpeople.org/linux_kernel_version_numbering
|
"""
|
||||||
# MAJOR_RELEASE.MAJOR_CHANGES.MINOR_CHANGES.BUG_FIXES
|
According to: https://wiki.unixpeople.org/linux_kernel_version_numbering
|
||||||
__version__ = '0.8.3.0'
|
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 <you@hanez.org>'
|
__author__ = 'Johannes Findeisen <you@hanez.org>'
|
||||||
|
|
||||||
logger = logging.getLogger('uplink')
|
logger = logging.getLogger('uplink')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue