File tree Expand file tree Collapse file tree 6 files changed +11
-6
lines changed
examples/twitted/twitted/local Expand file tree Collapse file tree 6 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 22
33## Version 1.2
44
5+ ### New features and APIs
6+
7+ * Added support for building custom search commands in Python using the Splunk
8+ SDK for Python.
9+
510### Bug fix
611
712* When running ` setup.py dist ` without running ` setup.py build ` , there is no
Original file line number Diff line number Diff line change 11# The Splunk Software Development Kit for Python
22
3- #### Version 1.1
3+ #### Version 1.2
44
55The Splunk Software Development Kit (SDK) for Python contains library code and
66examples designed to enable developers to build applications using Splunk.
Original file line number Diff line number Diff line change 11[ui]
22
33[launcher]
4- version = 1.1
4+ version = 1.2
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ def exclude(path):
183183
184184 license = "http://www.apache.org/licenses/LICENSE-2.0" ,
185185
186- name = "splunk-sdk-python " ,
186+ name = "splunk-sdk" ,
187187
188188 packages = ["splunklib" ],
189189
Original file line number Diff line number Diff line change 1414
1515"""Python library for Splunk."""
1616
17- __version_info__ = (1 , 1 , 0 )
17+ __version_info__ = (1 , 2 , 0 )
1818__version__ = "." .join (map (str , __version_info__ ))
1919
Original file line number Diff line number Diff line change @@ -73,14 +73,14 @@ def test_update(self):
7373 'author' : "Me" ,
7474 'description' : "Test app description" ,
7575 'label' : "SDK Test" ,
76- 'version' : "1.1 " ,
76+ 'version' : "1.2 " ,
7777 'visible' : True ,
7878 }
7979 self .app .update (** kwargs )
8080 self .app .refresh ()
8181 self .assertEqual (self .app ['author' ], "Me" )
8282 self .assertEqual (self .app ['label' ], "SDK Test" )
83- self .assertEqual (self .app ['version' ], "1.1 " )
83+ self .assertEqual (self .app ['version' ], "1.2 " )
8484 self .assertEqual (self .app ['visible' ], "1" )
8585
8686 def test_delete (self ):
You can’t perform that action at this time.
0 commit comments