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..270ddfd2b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,5 +1,16 @@ 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 functions in ``Grant`` object 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