Skip to content

Commit fedf5ab

Browse files
committed
Release version 1.6.1
1 parent c592d4f commit fedf5ab

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

README.md

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python bindings for Carbon Black REST API
22

3-
**Latest Version: 1.6.0**
3+
**Latest Version: 1.6.1**
44

55
These are the new Python bindings for the Carbon Black Enterprise Response and Enterprise Protection REST APIs.
66
To learn more about the REST APIs, visit the Carbon Black Developer Network Website at https://developer.carbonblack.com.

docs/changelog.rst

100755100644
+13-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ CbAPI Changelog
22
===============
33
.. top-of-changelog (DO NOT REMOVE THIS COMMENT)
44
5+
CbAPI 1.6.1 - Released January 13, 2020
6+
---------------------------------------
7+
8+
Updates
9+
10+
* CB Response
11+
* Fix Alert.save() to use alert v1 API
12+
* Carbon Black Cloud
13+
* Fix Live Response flow to use integrationServices/v3/device to prevent need for multiple API keys
14+
* CB ThreatHunter
15+
* Update example for ThreatHunter Query
16+
517
CbAPI 1.6.0 - Released December 3, 2019
618
---------------------------------------
719

@@ -15,7 +27,7 @@ Updates
1527
* Support for Alerts v6:
1628
* Search for and retrieve alerts
1729
* Update alert status (dismiss alerts)
18-
30+
1931
Examples
2032

2133
* Devices v6:

docs/conf.py

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = u'1.6'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'1.6.0'
64+
release = u'1.6.1'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
setup(
4040
name='cbapi',
41-
version='1.6.0',
41+
version='1.6.1',
4242
url='https://github.com/carbonblack/cbapi-python',
4343
license='MIT',
4444
author='Carbon Black',

src/cbapi/__init__.py

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = 'Carbon Black Developer Network'
77
__license__ = 'MIT'
88
__copyright__ = 'Copyright 2018-2019 VMware Carbon Black'
9-
__version__ = '1.6.0'
9+
__version__ = '1.6.1'
1010

1111
# New API as of cbapi 0.9.0
1212
from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI

0 commit comments

Comments
 (0)