From 39451cb8448b0c4980fd3ac7c930eeffbe7d2ca8 Mon Sep 17 00:00:00 2001 From: Amy Bowersox Date: Wed, 26 Jun 2024 10:06:38 -0600 Subject: [PATCH] bumped version number and included changelog info --- README.md | 4 ++-- VERSION | 2 +- docs/changelog.rst | 16 +++++++++++++++- docs/conf.py | 2 +- src/cbc_sdk/__init__.py | 2 +- 5 files changed, 20 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f984707b..d682c3b0 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Carbon Black Cloud Python SDK -**Latest Version:** 1.5.2 +**Latest Version:** 1.5.3
-**Release Date:** May 1, 2024 +**Release Date:** TBD [![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 4cda8f19..8af85beb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.2 +1.5.3 diff --git a/docs/changelog.rst b/docs/changelog.rst index 6a4e78f7..2df41f0d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -11,7 +11,21 @@ # * NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. Changelog -================================ +========= + +CBC SDK 1.5.3 - Released TBD +---------------------------- + +New Features: + +* Export Alerts in CSV format (``Alert.export()``). + +Documentation: + +* Updated code copyright dates and noted the ownership by Broadcom. +* Removed the Threat Intelligence example; it's been superseded by the + `Carbon Black Cloud Threat Intelligence Connector `_. + CBC SDK 1.5.2 - Released May 1, 2024 ------------------------------------ diff --git a/docs/conf.py b/docs/conf.py index 05d50a17..e2adabdf 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.5.2' +release = '1.5.3' # -- General configuration --------------------------------------------------- diff --git a/src/cbc_sdk/__init__.py b/src/cbc_sdk/__init__.py index 47dd3f30..571b8cba 100644 --- a/src/cbc_sdk/__init__.py +++ b/src/cbc_sdk/__init__.py @@ -15,7 +15,7 @@ __author__ = 'Carbon Black Developer Network' __license__ = 'MIT' __copyright__ = 'Copyright 2020-2024 VMware Carbon Black' -__version__ = '1.5.2' +__version__ = '1.5.3' from .rest_api import CBCloudAPI from .cache import lru