diff --git a/README.md b/README.md index ac28ac9c..fe3819f0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Python bindings for Carbon Black REST API -**Latest Version: 1.7.4** +**Latest Version: 1.7.5** _**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_ diff --git a/docs/changelog.rst b/docs/changelog.rst index bf86cdd2..b7c492be 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,14 @@ CbAPI Changelog =============== .. top-of-changelog (DO NOT REMOVE THIS COMMENT) +CbAPI 1.7.5 - Released June 16, 2021 +------------------------------------ + +Updates + +* General + * Allow the CbAPI to accept a pre-configured Session object to be used for access, to get around unusual configuration requirements. + CbAPI 1.7.4 - Released April 7, 2021 ------------------------------------ diff --git a/docs/conf.py b/docs/conf.py index d87119b6..3fdb0dc7 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.4' +release = u'1.7.5' # 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 83a9147e..6f353565 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup( name='cbapi', - version='1.7.4', + version='1.7.5', 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 618958c7..26373177 100644 --- a/src/cbapi/__init__.py +++ b/src/cbapi/__init__.py @@ -6,7 +6,7 @@ __author__ = 'Carbon Black Developer Network' __license__ = 'MIT' __copyright__ = 'Copyright 2018-2020 VMware Carbon Black' -__version__ = '1.7.4' +__version__ = '1.7.5' # New API as of cbapi 0.9.0 from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI