Skip to content

Commit e9484bb

Browse files
author
Shakeel Mohamed
committed
Merge remote-tracking branch 'origin/master' into develop
2 parents 35ca774 + 96039f1 commit e9484bb

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

CHANGELOG.md

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

3+
## Version 1.6.6
4+
5+
### Bug fixes
6+
7+
* Fix ssl verify to require certs when true
8+
9+
### Minor changes
10+
11+
* Make the explorer example compatible w/ Python 3
12+
* Add full support for unicode in SearchCommands
13+
* Add return code for invalid_args block
14+
315
## Version 1.6.5
416

517
### Bug fixes

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.5
4+
#### Version 1.6.6
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
@@ -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.5',
442+
version='1.6.6',
443443
author='Splunk, Inc.',
444444
author_email='devinfo@splunk.com',
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, 5)
19+
__version_info__ = (1, 6, 6)
2020
__version__ = ".".join(map(str, __version_info__))

splunklib/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,7 @@ def request(url, message, **kwargs):
13681368
head = {
13691369
"Content-Length": str(len(body)),
13701370
"Host": host,
1371-
"User-Agent": "splunk-sdk-python/1.6.5",
1371+
"User-Agent": "splunk-sdk-python/1.6.6",
13721372
"Accept": "*/*",
13731373
"Connection": "Close",
13741374
} # defaults

0 commit comments

Comments
 (0)