From d6ac00004dc8e339509e2e2977d0bd9cd4f5b8e6 Mon Sep 17 00:00:00 2001 From: Emanuela Mitreva Date: Wed, 1 Feb 2023 20:10:34 +0200 Subject: [PATCH] Version bump --- 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 18c0226d..26625acc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Python bindings for Carbon Black REST API -**Latest Version: 1.7.9** +**Latest Version: 1.7.10** _**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 28ee5882..39c826f5 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.10 - Release Feb 1, 2023 +------------------------------------ + +Bug Fixes + * Update CbAPI to use packaging instead of distutils for python3.7+ + CbAPI 1.7.9 - Release Sept 29, 2022 ------------------------------------ diff --git a/docs/conf.py b/docs/conf.py index 061d816d..d7d3f338 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.9' +release = u'1.7.10' # 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 d9a5a598..e8eb37dc 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ install_requires.extend(['packaging']) setup( name='cbapi', - version='1.7.9', + version='1.7.10', 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 39b2e873..f4acafd8 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-2022 VMware Carbon Black' -__version__ = '1.7.9' +__version__ = '1.7.10' # New API as of cbapi 0.9.0 from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI