From 126af2f1fd8295af59389d1c6004bb34a1086d52 Mon Sep 17 00:00:00 2001 From: Kylie Ebringer Date: Fri, 28 Jan 2022 09:23:22 -0700 Subject: [PATCH] Updated release version, date and changelog for v1.7.7 --- README.md | 2 +- docs/changelog.rst | 7 +++++++ docs/conf.py | 2 +- setup.py | 2 +- src/cbapi/__init__.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a75558f4..fc89025a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Python bindings for Carbon Black REST API -**Latest Version: 1.7.6** +**Latest Version: 1.7.7** _**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 54af41e4..728f7255 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,13 @@ CbAPI Changelog =============== .. top-of-changelog (DO NOT REMOVE THIS COMMENT) +CbAPI 1.7.7 - Release Jan 28, 2022 +------------------------------------ + +Bug Fixes + * Changed the sort order for EDR sensor searches from 'last_checkin_time' (default when none provided explicitly) to 'hostname' to make the sort stable as sensors checkin during paging + + CbAPI 1.7.6 - Release Dec 20, 2021 ------------------------------------ diff --git a/docs/conf.py b/docs/conf.py index 1f538938..10361fba 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.6' +release = u'1.7.7' # 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 745195b0..e318464a 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup( name='cbapi', - version='1.7.6', + version='1.7.7', 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 99d52b26..a9ebcc1e 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.6' +__version__ = '1.7.7' # New API as of cbapi 0.9.0 from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI