Skip to content

Commit 3338cac

Browse files
authored
Merge pull request #571 from splunk/release/2.0.1
Release/2.0.1
2 parents 9f9919d + 91f2bec commit 3338cac

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

CHANGELOG.md

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

3+
## Version 2.0.1
4+
5+
### Bug fixes
6+
* [#567](https://github.com/splunk/splunk-sdk-python/issues/567) Moved "deprecation" dependency
7+
8+
39
## Version 2.0.0
410

511
### Feature updates

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# The Splunk Enterprise Software Development Kit for Python
66

7-
#### Version 2.0.0
7+
#### Version 2.0.1
88

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

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ def run(self):
142142
"splunklib.modularinput",
143143
"splunklib.searchcommands"],
144144

145+
install_requires=[
146+
"deprecation",
147+
],
148+
145149
url="http://github.com/splunk/splunk-sdk-python",
146150

147151
version=splunklib.__version__,

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ def setup_logging(level, log_format=DEFAULT_LOG_FORMAT, date_format=DEFAULT_DATE
3030
datefmt=date_format)
3131

3232

33-
__version_info__ = (2, 0, 0)
33+
__version_info__ = (2, 0, 1)
3434
__version__ = ".".join(map(str, __version_info__))

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ deps = pytest
3131
xmlrunner
3232
unittest-xml-reporting
3333
python-dotenv
34-
deprecation
3534

3635
distdir = build
3736
commands =

0 commit comments

Comments
 (0)