From dd65d6fee75be6d8bf12efe884ff1d737b1c1435 Mon Sep 17 00:00:00 2001 From: Dimtiar Ganev Date: Fri, 17 Jun 2022 09:45:52 +0300 Subject: [PATCH] Upgrade version to 1.7.8 --- README.md | 2 +- docs/changelog.rst | 6 ++++++ docs/conf.py | 2 +- setup.py | 2 +- src/cbapi/__init__.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fc89025a..29187db0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Python bindings for Carbon Black REST API -**Latest Version: 1.7.7** +**Latest Version: 1.7.8** _**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 728f7255..10748d66 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.8 - Release Jun 17, 2022 +------------------------------------ + +Bug Fixes + * Vendor the `attrdict` module because of `ImportError` for Python3.10 + CbAPI 1.7.7 - Release Jan 28, 2022 ------------------------------------ diff --git a/docs/conf.py b/docs/conf.py index 10361fba..101852e4 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.7' +release = u'1.7.8' # 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 da033d9c..0888a67e 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ setup( name='cbapi', - version='1.7.7', + version='1.7.8', 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 a9ebcc1e..e34a1a95 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.7' +__version__ = '1.7.8' # New API as of cbapi 0.9.0 from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI