From 83101a907f084f593b387c78bc28466739161e6e Mon Sep 17 00:00:00 2001 From: Amy Bowersox Date: Mon, 14 Jun 2021 15:09:01 -0600 Subject: [PATCH 1/2] bump release to 1.3.1 --- README.md | 4 ++-- VERSION | 2 +- docs/changelog.rst | 12 ++++++++++++ docs/conf.py | 2 +- src/cbc_sdk/__init__.py | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b62de8f53..1128031c6 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # VMware Carbon Black Cloud Python SDK -**Latest Version:** 1.3.0 +**Latest Version:** 1.3.1
-**Release Date:** 08 June 2021 +**Release Date:** 15 June 2021 [![Coverage Status](https://coveralls.io/repos/github/carbonblack/carbon-black-cloud-sdk-python/badge.svg?t=Id6Baf)](https://coveralls.io/github/carbonblack/carbon-black-cloud-sdk-python) [![Codeship Status for carbonblack/carbon-black-cloud-sdk-python](https://app.codeship.com/projects/9e55a370-a772-0138-aae4-129773225755/status?branch=develop)](https://app.codeship.com/projects/402767) diff --git a/VERSION b/VERSION index f0bb29e76..3a3cd8cc8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.0 +1.3.1 diff --git a/docs/changelog.rst b/docs/changelog.rst index 0fb8e7671..5cf2077d1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,5 +1,17 @@ Changelog ================================ +CBC SDK 1.3.1 - Released June 15, 2021 +-------------------------------- + +New Features: + +* Allow the SDK to accept a pre-configured ``Session`` object to be used for access, to get around unusual + configuration requirements. + +Bug Fixes: + +* Fix to code for adding a new access profile to a user access grant. + CBC SDK 1.3.0 - Released June 8, 2021 -------------------------------- diff --git a/docs/conf.py b/docs/conf.py index 84f0b1be9..6adbdcc56 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = 'Developer Relations' # The full version, including alpha/beta/rc tags -release = '1.3.0' +release = '1.3.1' # -- General configuration --------------------------------------------------- diff --git a/src/cbc_sdk/__init__.py b/src/cbc_sdk/__init__.py index b3fd958d9..7e0c419a6 100644 --- a/src/cbc_sdk/__init__.py +++ b/src/cbc_sdk/__init__.py @@ -4,7 +4,7 @@ __author__ = 'Carbon Black Developer Network' __license__ = 'MIT' __copyright__ = 'Copyright 2020-2021 VMware Carbon Black' -__version__ = '1.3.0' +__version__ = '1.3.1' from .rest_api import CBCloudAPI from .cache import lru From 0521222e9ecab467717e4a44f4595c0182f204a5 Mon Sep 17 00:00:00 2001 From: Amy Bowersox Date: Mon, 14 Jun 2021 15:15:57 -0600 Subject: [PATCH 2/2] made message more specific --- docs/changelog.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 5cf2077d1..270ddfd2b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,12 +5,11 @@ CBC SDK 1.3.1 - Released June 15, 2021 New Features: -* Allow the SDK to accept a pre-configured ``Session`` object to be used for access, to get around unusual - configuration requirements. +* Allow the SDK to accept a pre-configured ``Session`` object to be used for access, to get around unusual configuration requirements. Bug Fixes: -* Fix to code for adding a new access profile to a user access grant. +* Fix functions in ``Grant`` object for adding a new access profile to a user access grant. CBC SDK 1.3.0 - Released June 8, 2021 --------------------------------