From f9ec4df68367753521382e35effcd4c0d3493656 Mon Sep 17 00:00:00 2001 From: Alex Van Brunt Date: Thu, 29 Sep 2022 13:48:48 -0600 Subject: [PATCH] Version bump for 1.7.9 --- README.md | 8 ++++---- docs/changelog.rst | 6 ++++++ docs/conf.py | 2 +- setup.py | 2 +- src/cbapi/__init__.py | 4 ++-- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 29187db0..18c0226d 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # Python bindings for Carbon Black REST API -**Latest Version: 1.7.8** +**Latest Version: 1.7.9** -_**Notice**:_ +_**Notice**:_ * 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 -* Carbon Black EDR (Endpoint Detection and Response) is the new name for the product formerly called CB Response. +* Carbon Black EDR (Endpoint Detection and Response) is the new name for the product formerly called CB Response. * Carbon Black App Control is the new name for the product formerly called CB Protection. 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 ### Sample Code -There are several examples in the `examples` directory for both EDR and App Control. +There are several examples in the `examples` directory for both EDR and App Control. For a quick start, see the following code snippets: **Carbon Black EDR** diff --git a/docs/changelog.rst b/docs/changelog.rst index 10748d66..28ee5882 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,12 @@ CbAPI Changelog =============== .. top-of-changelog (DO NOT REMOVE THIS COMMENT) +CbAPI 1.7.9 - Release Sept 29, 2022 +------------------------------------ + +Bug Fixes + * Adjust Live Response Worker creation for EDR sensors to optimize for sensor specific jobs + CbAPI 1.7.8 - Release Jun 17, 2022 ------------------------------------ diff --git a/docs/conf.py b/docs/conf.py index 101852e4..061d816d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. version = u'1.7' # The full version, including alpha/beta/rc tags. -release = u'1.7.8' +release = u'1.7.9' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 0888a67e..42503e25 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ setup( name='cbapi', - version='1.7.8', + version='1.7.9', url='https://github.com/carbonblack/cbapi-python', license='MIT', author='Carbon Black', diff --git a/src/cbapi/__init__.py b/src/cbapi/__init__.py index e34a1a95..39b2e873 100644 --- a/src/cbapi/__init__.py +++ b/src/cbapi/__init__.py @@ -5,8 +5,8 @@ __title__ = 'cbapi' __author__ = 'Carbon Black Developer Network' __license__ = 'MIT' -__copyright__ = 'Copyright 2018-2020 VMware Carbon Black' -__version__ = '1.7.8' +__copyright__ = 'Copyright 2018-2022 VMware Carbon Black' +__version__ = '1.7.9' # New API as of cbapi 0.9.0 from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI