File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
examples/searchcommands_app Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Splunk SDK for Python Changelog
2
2
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
+
3
11
## Version 1.6.6
4
12
5
13
### Bug fixes
Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ def run(self):
439
439
setup (
440
440
description = 'Custom Search Command examples' ,
441
441
name = os .path .basename (project_dir ),
442
- version = '1.6.6 ' ,
442
+ version = '1.6.7 ' ,
443
443
author = 'Splunk, Inc.' ,
444
444
author_email = 'devinfo@splunk.com' ,
445
445
url = 'http://github.com/splunk/splunk-sdk-python' ,
Original file line number Diff line number Diff line change 16
16
17
17
from __future__ import absolute_import
18
18
from splunklib .six .moves import map
19
- __version_info__ = (1 , 6 , 6 )
19
+ __version_info__ = (1 , 6 , 7 )
20
20
__version__ = "." .join (map (str , __version_info__ ))
You can’t perform that action at this time.
0 commit comments