From 88e253d1642846e413c1bb1741f3f13d1026aebf Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Wed, 6 Jan 2016 13:52:37 -0800 Subject: [PATCH] v4.1.9 --- HISTORY.rst | 11 +++++++++++ wakatime/__about__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 225498d..69176fb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,17 @@ History ------- +4.1.9 (2016-01-06) +++++++++++++++++++ + +- improve C# dependency detection +- correctly log exception tracebacks +- log all unknown exceptions to wakatime.log file +- disable urllib3 SSL warning from every request +- detect dependencies from golang files +- use api.wakatime.com for sending heartbeats + + 4.1.8 (2015-09-29) ++++++++++++++++++ diff --git a/wakatime/__about__.py b/wakatime/__about__.py index aa701ee..3a9cd2b 100644 --- a/wakatime/__about__.py +++ b/wakatime/__about__.py @@ -1,7 +1,7 @@ __title__ = 'wakatime' __description__ = 'Common interface to the WakaTime api.' __url__ = 'https://github.com/wakatime/wakatime' -__version_info__ = ('4', '1', '8') +__version_info__ = ('4', '1', '9') __version__ = '.'.join(__version_info__) __author__ = 'Alan Hamlett' __author_email__ = 'alan@wakatime.com'