Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# 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
* [#559](https://github.com/splunk/splunk-sdk-python/pull/559/) Add exception logging

## 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
Expand Down
6 changes: 3 additions & 3 deletions 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.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.

Expand All @@ -25,9 +25,9 @@ The Splunk Enterprise SDK for Python contains library code, and its examples are

Here's what you need to get going with the Splunk Enterprise SDK for Python.

* Python 3.7 or Python 3.9
* Python 3.7, Python 3.9 and Python 3.13

The Splunk Enterprise SDK for Python is compatible with python3 and has been tested with Python v3.7 and v3.9.
The Splunk Enterprise SDK for Python is compatible with python3 and has been tested with Python v3.7, v3.9 and v3.13.

* Splunk Enterprise 9.2 or 8.2

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, 1, 0)
__version__ = ".".join(map(str, __version_info__))
Loading