Skip to content

Commit 448c67d

Browse files
author
David Noble
committed
Updated change log, read me and version number
1 parent e978fe9 commit 448c67d

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The Splunk Software Development Kit for Python
22

3-
#### Version 1.1
3+
#### Version 1.2
44

55
The Splunk Software Development Kit (SDK) for Python contains library code and
66
examples designed to enable developers to build applications using Splunk.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[ui]
22

33
[launcher]
4-
version = 1.1
4+
version = 1.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
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

tests/test_app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)