Skip to content

Commit

Permalink
Merge pull request #571 from splunk/release/2.0.1
Browse files Browse the repository at this point in the history
Release/2.0.1
  • Loading branch information
maszyk99 committed Mar 26, 2024
2 parents 9f9919d + 91f2bec commit 3338cac
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -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
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
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
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
Expand Up @@ -31,7 +31,6 @@ deps = pytest
xmlrunner
unittest-xml-reporting
python-dotenv
deprecation

distdir = build
commands =
Expand Down

0 comments on commit 3338cac

Please sign in to comment.