Skip to content

Commit f7222b3

Browse files
committed
Updates files for 1.6.15 release.
1 parent d9f08dd commit f7222b3

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
@@ -3,7 +3,7 @@
33

44
# The Splunk Enterprise Software Development Kit for Python
55

6-
#### Version 1.6.14
6+
#### Version 1.6.15
77

88
The Splunk Enterprise Software Development Kit (SDK) for Python contains library code and examples designed to enable developers to build applications using the Splunk platform.
99

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.14',
442+
version='1.6.15',
443443
author='Splunk, Inc.',
444444
author_email='[email protected]',
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,5 +16,5 @@
1616

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

splunklib/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@ def request(url, message, **kwargs):
13851385
head = {
13861386
"Content-Length": str(len(body)),
13871387
"Host": host,
1388-
"User-Agent": "splunk-sdk-python/1.6.14",
1388+
"User-Agent": "splunk-sdk-python/1.6.15",
13891389
"Accept": "*/*",
13901390
"Connection": "Close",
13911391
} # defaults

0 commit comments

Comments
 (0)