Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update version number to 2.0.4 #89

Merged
merged 2 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3
* `{{product_version}}` - Current CBC Syslog version e.g. 2.0.4


For the available Alert fields see [Search Fields - Alerts](https://developer.carbonblack.com/reference/carbon-black-cloud/platform/latest/alert-search-fields)
Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## Version 2.0.4

**Bug Fixes**
* Update copyrights on code to reflect current date and Broadcom.
* Update dependencies to fixed version of CBC SDK.

## Version 2.0.3

**Bug Fixes:**
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

setup(
name="cbc_syslog",
version="2.0.3",
version="2.0.4",
install_requires=install_requires,
extras_require=extras_require,
package_dir={"": "src"},
Expand Down
4 changes: 2 additions & 2 deletions src/cbc_syslog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
__title__ = 'cbc_syslog'
__author__ = 'Carbon Black Developer Network'
__license__ = 'MIT'
__copyright__ = 'Copyright 2018-2023 VMware Carbon Black'
__version__ = '2.0.3'
__copyright__ = 'Copyright 2018-2024 Broadcom Inc. Carbon Black.'
__version__ = '2.0.4'

from .core import poll, check, history, wizard, convert

Expand Down