File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Splunk SDK for Python Changelog
2
2
3
+ ## Version 1.1
4
+
5
+ ### New features and APIs
6
+
7
+ * Added support for building modular input scripts in Python using the Splunk
8
+ SDK for Python.
9
+
10
+ ### Minor additions
11
+
12
+ * Added 2 modular input examples: ` Github forks ` and ` random numbers ` .
13
+
14
+ * Added a ` dist ` command to ` setup.py ` . Running ` setup.py dist ` will generate
15
+ 2 ` .spl ` files for the new modular input example apps.
16
+
17
+ * ` client.py ` in the ` splunklib ` module will now restart Splunk via an HTTP
18
+ post request instead of an HTTP get request.
19
+
20
+ * ` .gitignore ` has been updated to ignore ` local ` and ` metadata ` subdirectories
21
+ for any examples.
22
+
3
23
## Version 1.0
4
24
5
25
### New features and APIs
Original file line number Diff line number Diff line change 14
14
15
15
"""Python library for Splunk."""
16
16
17
- __version_info__ = (1 , 0 , 0 )
17
+ __version_info__ = (1 , 1 , 0 )
18
18
__version__ = "." .join (map (str , __version_info__ ))
19
19
You can’t perform that action at this time.
0 commit comments