Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Splunk Enterprise SDK for Python Changelog

## Version 2.0.1

### Bug fixes
* [#567](https://github.com/splunk/splunk-sdk-python/issues/567) Moved "deprecation" dependency


## Version 2.0.0

### Feature updates
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# The Splunk Enterprise Software Development Kit for Python

#### Version 2.0.0
#### Version 2.0.1

The Splunk Enterprise Software Development Kit (SDK) for Python contains library code designed to enable developers to build applications using the Splunk platform.

Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ def run(self):
"splunklib.modularinput",
"splunklib.searchcommands"],

install_requires=[
"deprecation",
],

url="http://github.com/splunk/splunk-sdk-python",

version=splunklib.__version__,
Expand Down
2 changes: 1 addition & 1 deletion splunklib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ def setup_logging(level, log_format=DEFAULT_LOG_FORMAT, date_format=DEFAULT_DATE
datefmt=date_format)


__version_info__ = (2, 0, 0)
__version_info__ = (2, 0, 1)
__version__ = ".".join(map(str, __version_info__))
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ deps = pytest
xmlrunner
unittest-xml-reporting
python-dotenv
deprecation

distdir = build
commands =
Expand Down