From 6b0b75f381fef905f11819e2e0ef2a83f31a20e3 Mon Sep 17 00:00:00 2001 From: Abhi Shah Date: Tue, 26 Mar 2024 14:04:06 +0530 Subject: [PATCH 1/3] Missing deprecation dependency added --- setup.py | 4 ++++ tox.ini | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 62725534..c80ddf37 100755 --- a/setup.py +++ b/setup.py @@ -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__, diff --git a/tox.ini b/tox.ini index b5bcf34c..e45dbfb9 100644 --- a/tox.ini +++ b/tox.ini @@ -31,7 +31,6 @@ deps = pytest xmlrunner unittest-xml-reporting python-dotenv - deprecation distdir = build commands = From 06a97b66fe3c4a041e3f959d202c2075c69c8ff4 Mon Sep 17 00:00:00 2001 From: maszyk99 Date: Tue, 26 Mar 2024 11:29:03 +0100 Subject: [PATCH 2/3] Add next release number --- README.md | 2 +- splunklib/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2bbae4de..0969bbc2 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/splunklib/__init__.py b/splunklib/__init__.py index 2613d284..c86dfdb8 100644 --- a/splunklib/__init__.py +++ b/splunklib/__init__.py @@ -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__)) From 91f2bec08d59ec79b1efe3e79d1114c217f55687 Mon Sep 17 00:00:00 2001 From: maszyk99 Date: Tue, 26 Mar 2024 11:37:20 +0100 Subject: [PATCH 3/3] Mention bugfix in changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e423e67..87d27a22 100644 --- a/CHANGELOG.md +++ b/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