Skip to content

Commit 2853c82

Browse files
authored
Merge pull request #318 from carbonblack/release-1.7.9
Version bump for 1.7.9
2 parents 065ce86 + f9ec4df commit 2853c82

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

Diff for: README.md

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

3-
**Latest Version: 1.7.8**
3+
**Latest Version: 1.7.9**
44

5-
_**Notice**:_
5+
_**Notice**:_
66
* The Carbon Black Cloud portion of CBAPI has moved to https://github.com/carbonblack/carbon-black-cloud-sdk-python. Any future development and bug fixes for Carbon Black Cloud APIs will be made there. Carbon Black EDR and App Control will remain supported at CBAPI
7-
* Carbon Black EDR (Endpoint Detection and Response) is the new name for the product formerly called CB Response.
7+
* Carbon Black EDR (Endpoint Detection and Response) is the new name for the product formerly called CB Response.
88
* Carbon Black App Control is the new name for the product formerly called CB Protection.
99

1010
These are the Python bindings for the Carbon Black EDR and App Control REST APIs.
@@ -49,7 +49,7 @@ Clone this repository, cd into `cbapi-python` then run setup.py with the `develo
4949

5050
### Sample Code
5151

52-
There are several examples in the `examples` directory for both EDR and App Control.
52+
There are several examples in the `examples` directory for both EDR and App Control.
5353
For a quick start, see the following code snippets:
5454

5555
**Carbon Black EDR**

Diff for: docs/changelog.rst

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ CbAPI Changelog
22
===============
33
.. top-of-changelog (DO NOT REMOVE THIS COMMENT)
44
5+
CbAPI 1.7.9 - Release Sept 29, 2022
6+
------------------------------------
7+
8+
Bug Fixes
9+
* Adjust Live Response Worker creation for EDR sensors to optimize for sensor specific jobs
10+
511
CbAPI 1.7.8 - Release Jun 17, 2022
612
------------------------------------
713

Diff for: docs/conf.py

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

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

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
setup(
4242
name='cbapi',
43-
version='1.7.8',
43+
version='1.7.9',
4444
url='https://github.com/carbonblack/cbapi-python',
4545
license='MIT',
4646
author='Carbon Black',

Diff for: src/cbapi/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
__title__ = 'cbapi'
66
__author__ = 'Carbon Black Developer Network'
77
__license__ = 'MIT'
8-
__copyright__ = 'Copyright 2018-2020 VMware Carbon Black'
9-
__version__ = '1.7.8'
8+
__copyright__ = 'Copyright 2018-2022 VMware Carbon Black'
9+
__version__ = '1.7.9'
1010

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

0 commit comments

Comments
 (0)