diff --git a/README.md b/README.md index 8121aed..46aa925 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ The Carbon Black Cloud Syslog connector lets administrators forward alerts and a Still need CBC Syslog 1.x? Checkout the `legacy` branch -If you are looking to migrate from CBC Syslog 1.x to 2.x take a look at the [migration doc](MIGRATION.md). +If you are looking to migrate from CBC Syslog 1.x to 2.x take a look at the [migration doc](https://github.com/carbonblack/cbc-syslog/blob/main/MIGRATION.md). ## Features @@ -297,7 +297,7 @@ The following fields are available for building the Syslog header * `{{datetime_legacy}}` - Uses current time with format e.g. Jan 18 11:07:53 * `{{vendor}}` - CarbonBlack * `{{product}}` - CBCSyslog -* `{{product_version}}` - Current CBC Syslog version e.g. 2.0.0 +* `{{product_version}}` - Current CBC Syslog version e.g. 2.0.1 For the available Alert fields see [Search Fields - Alerts](https://developer.carbonblack.com/reference/carbon-black-cloud/platform/latest/alert-search-fields) diff --git a/changelog.md b/changelog.md index 5096e0c..9c960c5 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,12 @@ # Changelog All notable changes to this project will be documented in this file. +## Version 2.0.1 + +**Bug Fixes:** +* Enforce carbon-black-cloud-sdk >= 1.5.0 +* Fix broken link in readme for pypi + ## Version 2.0.0 The CBC Syslog tool has been rewritten from the ground up to provide increased customization and improved Alert data with support for the latest Carbon Black Cloud alert types diff --git a/requirements.txt b/requirements.txt index 349af59..e6774f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # Package dependencies -carbon-black-cloud-sdk +carbon-black-cloud-sdk >= 1.5.0 tomli >= 1.1.0; python_version < '3.11' Jinja2 psutil diff --git a/setup.py b/setup.py index 52f6ef0..4081dab 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ ] install_requires = [ - "carbon-black-cloud-sdk", + "carbon-black-cloud-sdk >= 1.5.0", "Jinja2", "psutil", "tomli >= 1.1.0; python_version < '3.11'" @@ -41,7 +41,7 @@ setup( name="cbc_syslog", - version="2.0.0", + version="2.0.1", install_requires=install_requires, extras_require=extras_require, package_dir={"": "src"}, diff --git a/src/cbc_syslog/__init__.py b/src/cbc_syslog/__init__.py index af218df..f5d6ff4 100644 --- a/src/cbc_syslog/__init__.py +++ b/src/cbc_syslog/__init__.py @@ -4,7 +4,7 @@ __author__ = 'Carbon Black Developer Network' __license__ = 'MIT' __copyright__ = 'Copyright 2018-2023 VMware Carbon Black' -__version__ = '2.0.0' +__version__ = '2.0.1' from .core import poll, check, history, wizard, convert