upgrade wakatime-cli to v6.0.1
This commit is contained in:
parent
e178765412
commit
f19a448d95
2 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
__title__ = 'wakatime'
|
__title__ = 'wakatime'
|
||||||
__description__ = 'Common interface to the WakaTime api.'
|
__description__ = 'Common interface to the WakaTime api.'
|
||||||
__url__ = 'https://github.com/wakatime/wakatime'
|
__url__ = 'https://github.com/wakatime/wakatime'
|
||||||
__version_info__ = ('6', '0', '0')
|
__version_info__ = ('6', '0', '1')
|
||||||
__version__ = '.'.join(__version_info__)
|
__version__ = '.'.join(__version_info__)
|
||||||
__author__ = 'Alan Hamlett'
|
__author__ = 'Alan Hamlett'
|
||||||
__author_email__ = 'alan@wakatime.com'
|
__author_email__ = 'alan@wakatime.com'
|
||||||
|
|
|
@ -485,6 +485,11 @@ def process_heartbeat(args, configs, hostname, heartbeat):
|
||||||
heartbeat['hostname'] = hostname
|
heartbeat['hostname'] = hostname
|
||||||
heartbeat['timeout'] = args.timeout
|
heartbeat['timeout'] = args.timeout
|
||||||
heartbeat['key'] = args.key
|
heartbeat['key'] = args.key
|
||||||
|
heartbeat['plugin'] = args.plugin
|
||||||
|
heartbeat['offline'] = args.offline
|
||||||
|
heartbeat['hidefilenames'] = args.hidefilenames
|
||||||
|
heartbeat['proxy'] = args.proxy
|
||||||
|
heartbeat['api_url'] = args.api_url
|
||||||
|
|
||||||
return send_heartbeat(**heartbeat)
|
return send_heartbeat(**heartbeat)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue