Skip to content

Commit 8e2ff5d

Browse files
author
Shakeel Mohamed
committed
Updated version to 1.1, changelog
1 parent b45ed5f commit 8e2ff5d

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.md

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

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+
323
## Version 1.0
424

525
### New features and APIs

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

0 commit comments

Comments
 (0)