Skip to content

Commit 02c25b9

Browse files
author
Parul Upadhyaya
committed
update changelog and release version number in files
1 parent c638223 commit 02c25b9

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Splunk SDK for Python Changelog
22

3+
## Version 1.6.12
4+
5+
### New features and APIs
6+
* Added Bearer token support using Splunk Token in v7.3
7+
* Made modinput text consistent
8+
9+
### Bug fixes
10+
* Changed permissions from 755 to 644 for python files to pass appinspect checks
11+
* Removed version check on ssl verify toggle
12+
313
## Version 1.6.11
414

515
### Bug Fix

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# The Splunk Software Development Kit for Python
55

6-
#### Version 1.6.11
6+
#### Version 1.6.12
77

88
The Splunk Software Development Kit (SDK) for Python contains library code and
99
examples designed to enable developers to build applications using Splunk.
@@ -17,7 +17,7 @@ monitoring of IT machine data, security, compliance and a wide variety of other
1717
scenarios that share a requirement to efficiently index, search, analyze and
1818
generate real-time notifications from large volumes of time series data.
1919

20-
The Splunk developer platform enables developers to take advantage of the same
20+
The Splunk developer platform enables ^Fdevelopers to take advantage of the same
2121
technology used by the Splunk product to build exciting new applications that
2222
are enabled by Splunk's unique capabilities.
2323

examples/searchcommands_app/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def run(self):
439439
setup(
440440
description='Custom Search Command examples',
441441
name=os.path.basename(project_dir),
442-
version='1.6.11',
442+
version='1.6.12',
443443
author='Splunk, Inc.',
444444
author_email='devinfo@splunk.com',
445445
url='http://github.com/splunk/splunk-sdk-python',

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616

1717
from __future__ import absolute_import
1818
from splunklib.six.moves import map
19-
__version_info__ = (1, 6, 11)
19+
__version_info__ = (1, 6, 12)
2020
__version__ = ".".join(map(str, __version_info__))

splunklib/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@ def request(url, message, **kwargs):
13761376
head = {
13771377
"Content-Length": str(len(body)),
13781378
"Host": host,
1379-
"User-Agent": "splunk-sdk-python/1.6.11",
1379+
"User-Agent": "splunk-sdk-python/1.6.12",
13801380
"Accept": "*/*",
13811381
"Connection": "Close",
13821382
} # defaults

0 commit comments

Comments
 (0)