This commit is contained in:
Alan Hamlett 2016-07-06 23:13:08 +02:00
parent a5933aa2a7
commit 5fe5c61dce
2 changed files with 11 additions and 1 deletions

View File

@ -3,6 +3,16 @@ History
-------
6.0.7 (2016-07-06)
++++++++++++++++++
- Handle unknown exceptions from requests library by deleting cached session
object because it could be from a previous conflicting version.
- New hostname setting in config file to set machine hostname. Hostname
argument takes priority over hostname from config file.
- Prevent logging unrelated exception when logging tracebacks.
6.0.6 (2016-06-17)
++++++++++++++++++

View File

@ -1,7 +1,7 @@
__title__ = 'wakatime'
__description__ = 'Common interface to the WakaTime api.'
__url__ = 'https://github.com/wakatime/wakatime'
__version_info__ = ('6', '0', '6')
__version_info__ = ('6', '0', '7')
__version__ = '.'.join(__version_info__)
__author__ = 'Alan Hamlett'
__author_email__ = 'alan@wakatime.com'