Skip to content

Commit cf03883

Browse files
authored
Merge pull request #614 from splunk/master
Merge master into develop
2 parents 2b90307 + ab51ffc commit cf03883

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Splunk Enterprise SDK for Python Changelog
22

3+
## Version 2.1.0
4+
5+
### Changes
6+
* [#516](https://github.com/splunk/splunk-sdk-python/pull/516) Added support for macros
7+
* Remove deprecated `wrap_socket` in `Contex` class.
8+
* Added explicit support for self signed certificates in https
9+
* Enforce minimal required tls version in https connection
10+
* Add support for python 3.13
11+
* [#559](https://github.com/splunk/splunk-sdk-python/pull/559/) Add exception logging
12+
13+
## Version 2.0.2
14+
15+
### Minor changes
16+
* Added six.py file back
17+
18+
19+
## Version 2.0.1
20+
21+
### Bug fixes
22+
* [#567](https://github.com/splunk/splunk-sdk-python/issues/567) Moved "deprecation" dependency
23+
24+
325
## Version 2.0.0
426

527
### Feature updates

README.md

+3-3
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.1.0
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

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

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

28-
* Python 3.7 or Python 3.9
28+
* Python 3.7, Python 3.9 and Python 3.13
2929

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

3232
* Splunk Enterprise 9.2 or 8.2
3333

splunklib/__init__.py

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

0 commit comments

Comments
 (0)