diff --git a/CHANGELOG.md b/CHANGELOG.md index a87083885..1f9a9c864 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Splunk SDK for Python Changelog +## Version 1.6.11 + +### Bug Fix + +* Fix custom search command V2 failures on Windows for Python3 + ## Version 1.6.10 ### Bug Fix diff --git a/README.md b/README.md index 5ca083dd4..d4b819cde 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # The Splunk Software Development Kit for Python -#### Version 1.6.10 +#### Version 1.6.11 The Splunk Software Development Kit (SDK) for Python contains library code and examples designed to enable developers to build applications using Splunk. diff --git a/examples/searchcommands_app/setup.py b/examples/searchcommands_app/setup.py index 170949978..b84d5bbb4 100755 --- a/examples/searchcommands_app/setup.py +++ b/examples/searchcommands_app/setup.py @@ -439,7 +439,7 @@ def run(self): setup( description='Custom Search Command examples', name=os.path.basename(project_dir), - version='1.6.10', + version='1.6.11', author='Splunk, Inc.', author_email='devinfo@splunk.com', url='http://github.com/splunk/splunk-sdk-python', diff --git a/splunklib/__init__.py b/splunklib/__init__.py index 9b7cc5f26..7b3767120 100644 --- a/splunklib/__init__.py +++ b/splunklib/__init__.py @@ -16,5 +16,5 @@ from __future__ import absolute_import from splunklib.six.moves import map -__version_info__ = (1, 6, 10) +__version_info__ = (1, 6, 11) __version__ = ".".join(map(str, __version_info__)) diff --git a/splunklib/binding.py b/splunklib/binding.py index 1cd2017e8..bfccf6f3b 100644 --- a/splunklib/binding.py +++ b/splunklib/binding.py @@ -1369,7 +1369,7 @@ def request(url, message, **kwargs): head = { "Content-Length": str(len(body)), "Host": host, - "User-Agent": "splunk-sdk-python/1.6.10", + "User-Agent": "splunk-sdk-python/1.6.11", "Accept": "*/*", "Connection": "Close", } # defaults