From 180cdd23057b51bd5c0b003c44ada96493db3255 Mon Sep 17 00:00:00 2001 From: Szymon Date: Tue, 29 Oct 2024 16:57:52 +0100 Subject: [PATCH] Add changelog --- CHANGELOG.md | 21 +++++++++++++++++++++ README.md | 2 +- splunklib/__init__.py | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e423e67..f37733cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Splunk Enterprise SDK for Python Changelog +## Version 2.1.0 + +### Changes +* [#516](https://github.com/splunk/splunk-sdk-python/pull/516) Added support for macros +* Remove deprecated `wrap_socket` in `Contex` class. +* Added explicit support for self signed certificates in https +* Enforce minimal required tls version in https connection +* Add support for python 3.13 + +## Version 2.0.2 + +### Minor changes +* Added six.py file back + + +## 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 diff --git a/README.md b/README.md index 2bbae4de..e200fc9b 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.1.0 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..5f83b2ac 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, 1, 0) __version__ = ".".join(map(str, __version_info__))