Skip to content

Commit 9bd8c1f

Browse files
author
Shakeel Mohamed
committed
Update version number
1 parent 04d76a5 commit 9bd8c1f

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.1
4+
#### Version 1.6.2
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
@@ -432,7 +432,7 @@ def run(self):
432432
setup(
433433
description='Custom Search Command examples',
434434
name=os.path.basename(project_dir),
435-
version='1.6.1',
435+
version='1.6.2',
436436
author='Splunk, Inc.',
437437
author_email='devinfo@splunk.com',
438438
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
@@ -14,6 +14,6 @@
1414

1515
"""Python library for Splunk."""
1616

17-
__version_info__ = (1, 6, 1)
17+
__version_info__ = (1, 6, 2)
1818
__version__ = ".".join(map(str, __version_info__))
1919

splunklib/binding.py

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

0 commit comments

Comments
 (0)