Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/searchcommands_app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion splunklib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))
2 changes: 1 addition & 1 deletion splunklib/binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Empty file modified splunklib/modularinput/__init__.py
100755 → 100644
Empty file.
Empty file modified splunklib/modularinput/argument.py
100755 → 100644
Empty file.
Empty file modified splunklib/modularinput/event.py
100755 → 100644
Empty file.
Empty file modified splunklib/modularinput/event_writer.py
100755 → 100644
Empty file.
Empty file modified splunklib/modularinput/input_definition.py
100755 → 100644
Empty file.
Empty file modified splunklib/modularinput/scheme.py
100755 → 100644
Empty file.
Empty file modified splunklib/modularinput/script.py
100755 → 100644
Empty file.
Empty file modified splunklib/modularinput/utils.py
100755 → 100644
Empty file.
Empty file modified splunklib/modularinput/validation_definition.py
100755 → 100644
Empty file.