Skip to content

Commit cece47d

Browse files
committed
Merge branch 'master' into develop
2 parents 3dc97b1 + e0c515b commit cece47d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

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

3+
## Version 1.6.7
4+
5+
### Changes
6+
7+
* Updated the Splunk SDK for Python to work with the Python 3 version of Splunk Enterprise on Windows
8+
* Improved the performance of deleting/updating an input
9+
* Added logging to custom search commands app to showcase how to do logging in custom search commands by using the Splunk SDK for Python
10+
311
## Version 1.6.6
412

513
### Bug fixes

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

0 commit comments

Comments
 (0)