Skip to content

Commit cdda5d5

Browse files
committed
Updates to release 1.6.13
1 parent b788598 commit cdda5d5

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Splunk SDK for Python Changelog
22

3+
## Version 1.6.13
4+
5+
### Bug fix
6+
* Fixes regression in mod inputs which resulted in an error ’file' object has no attribute 'readable’, by not forcing to text/bytes in mod inputs event writer any longer.
7+
38
## Version 1.6.12
49

510
### New features and APIs

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# The Splunk Software Development Kit for Python
55

6-
#### Version 1.6.12
6+
#### Version 1.6.13
77

88
The Splunk Software Development Kit (SDK) for Python contains library code and
99
examples designed to enable developers to build applications using Splunk.
@@ -17,7 +17,7 @@ monitoring of IT machine data, security, compliance and a wide variety of other
1717
scenarios that share a requirement to efficiently index, search, analyze and
1818
generate real-time notifications from large volumes of time series data.
1919

20-
The Splunk developer platform enables ^Fdevelopers to take advantage of the same
20+
The Splunk developer platform enables developers to take advantage of the same
2121
technology used by the Splunk product to build exciting new applications that
2222
are enabled by Splunk's unique capabilities.
2323

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.12',
442+
version='1.6.13',
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, 12)
19+
__version_info__ = (1, 6, 13)
2020
__version__ = ".".join(map(str, __version_info__))

splunklib/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1378,7 +1378,7 @@ def request(url, message, **kwargs):
13781378
head = {
13791379
"Content-Length": str(len(body)),
13801380
"Host": host,
1381-
"User-Agent": "splunk-sdk-python/1.6.12",
1381+
"User-Agent": "splunk-sdk-python/1.6.13",
13821382
"Accept": "*/*",
13831383
"Connection": "Close",
13841384
} # defaults

0 commit comments

Comments
 (0)