Skip to content

Commit 9f879dd

Browse files
committed
Merge branch 'release/0.1.0a'
2 parents f577575 + 4dead91 commit 9f879dd

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

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

3+
## v0.1.0a
4+
5+
* Fix a bug in the dashboard example
6+
* Ramp up README with more info
7+
38
## v0.1.0
49

510
* Initial Python SDK release

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ as custom search commands, lookup functions, scripted inputs and custom REST
110110
handlers.
111111

112112
You can find additional information about building applications on Splunk at
113-
our developer portal at COMING SOON.
113+
our developer portal at http://dev.splunk.com.
114114

115115
### Hello Splunk
116116

@@ -194,24 +194,24 @@ You can read more about our branching model on our
194194
You can find anything having to do with developing on Splunk at the Splunk
195195
developer portal:
196196

197-
* **COMING SOON**
197+
* http://dev.splunk.com
198198

199199
You can also find full reference documentation of the REST API:
200200

201201
* http://docs.splunk.com/Documentation/Splunk/latest/RESTAPI
202202

203203
For a gentle introduction to the Splunk product and some of its capabilities:
204204

205-
* **COMING SOON**
205+
* http://docs.splunk.com/Documentation/Splunk/latest/User/SplunkOverview
206206

207207
## Community
208208

209-
* Email: Stay connected with other developers building on Splunk: **COMING SOON**
209+
* Email: Stay connected with other developers building on Splunk: [email protected]
210210
* Issues: https://github.com/splunk/splunk-sdk-python/issues
211211
* Answers: Check out this tag on Splunk answers for:
212212
http://splunk-base.splunk.com/tags/python/
213213
* Blog: http://blogs.splunk.com/dev/
214-
* Twitter: **COMING SOON**
214+
* Twitter: [@splunkdev](http://twitter.com)
215215

216216
### How to contribute
217217

examples/dashboard/feed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import sys, datetime, urllib2, json
2424
from xml.etree import ElementTree
2525

26-
import splunk
26+
import splunk.client
2727
import splunk.results as results
2828
from utils import parse, error
2929

splunk/__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__ = (0, 1, 0)
17+
__version_info__ = (0, 1, '0a')
1818
__version__ = ".".join(map(str, __version_info__))
1919

0 commit comments

Comments
 (0)