From ac9044845d9bd80c926dbaa1e17c46315088ef79 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Thu, 12 Feb 2015 18:37:01 -0800 Subject: [PATCH] v4.0.0 --- HISTORY.rst | 8 ++++++++ wakatime/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 612f290..0197b1c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,14 @@ History ------- +4.0.0 (2015-02-12) +++++++++++++++++++ + +- use requests library instead of urllib2, so api SSL cert is verified +- new --notfile argument to support logging time without a real file +- new --proxy argument for https proxy support + + 3.0.5 (2015-01-13) ++++++++++++++++++ diff --git a/wakatime/__init__.py b/wakatime/__init__.py index 4cf4506..bda6a68 100644 --- a/wakatime/__init__.py +++ b/wakatime/__init__.py @@ -13,7 +13,7 @@ from __future__ import print_function __title__ = 'wakatime' -__version__ = '3.0.5' +__version__ = '4.0.0' __author__ = 'Alan Hamlett' __license__ = 'BSD' __copyright__ = 'Copyright 2014 Alan Hamlett'