Skip to content

Commit 180cdd2

Browse files
committed
Add changelog
1 parent f637ade commit 180cdd2

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
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+
12+
## Version 2.0.2
13+
14+
### Minor changes
15+
* Added six.py file back
16+
17+
18+
## Version 2.0.1
19+
20+
### Bug fixes
21+
* [#567](https://github.com/splunk/splunk-sdk-python/issues/567) Moved "deprecation" dependency
22+
23+
324
## Version 2.0.0
425

526
### Feature updates

README.md

+1-1
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

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)