Skip to content

Commit e9a4d04

Browse files
committed
Update version number
1 parent 4791e94 commit e9a4d04

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://travis-ci.org/splunk/splunk-sdk-python.svg?branch=master)](https://travis-ci.org/splunk/splunk-sdk-python)
22
# The Splunk Software Development Kit for Python
33

4-
#### Version 1.6.2
4+
#### Version 1.6.3
55

66
The Splunk Software Development Kit (SDK) for Python contains library code and
77
examples designed to enable developers to build applications using Splunk.

examples/searchcommands_app/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def run(self):
439439
setup(
440440
description='Custom Search Command examples',
441441
name=os.path.basename(project_dir),
442-
version='1.6.2',
442+
version='1.6.3',
443443
author='Splunk, Inc.',
444444
author_email='devinfo@splunk.com',
445445
url='http://github.com/splunk/splunk-sdk-python',

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616

1717
from __future__ import absolute_import
1818
from splunklib.six.moves import map
19-
__version_info__ = (1, 6, 2)
19+
__version_info__ = (1, 6, 3)
2020
__version__ = ".".join(map(str, __version_info__))
2121

splunklib/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ def request(url, message, **kwargs):
13461346
head = {
13471347
"Content-Length": str(len(body)),
13481348
"Host": host,
1349-
"User-Agent": "splunk-sdk-python/1.6.2",
1349+
"User-Agent": "splunk-sdk-python/1.6.3",
13501350
"Accept": "*/*",
13511351
"Connection": "Close",
13521352
} # defaults

0 commit comments

Comments
 (0)