Skip to content

Commit 4f84f61

Browse files
committed
Bug fix release 2.0.3
1 parent 83cf679 commit 4f84f61

18 files changed

+22
-17
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020-2023 VMware Inc.
3+
Copyright (c) 2020-2024 VMware Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## Version 2.0.3
5+
6+
**Bug Fixes:**
7+
* Fix datetime.now UTC issue that prevents polling alerts
8+
49
## Version 2.0.2
510

611
**Bug Fixes:**

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
setup(
4343
name="cbc_syslog",
44-
version="2.0.2",
44+
version="2.0.3",
4545
install_requires=install_requires,
4646
extras_require=extras_require,
4747
package_dir={"": "src"},

src/cbc_syslog/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__author__ = 'Carbon Black Developer Network'
55
__license__ = 'MIT'
66
__copyright__ = 'Copyright 2018-2023 VMware Carbon Black'
7-
__version__ = '2.0.2'
7+
__version__ = '2.0.3'
88

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

src/cbc_syslog/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# *******************************************************
2-
# Copyright (c) VMware, Inc. 2020-2023. All Rights Reserved.
2+
# Copyright (c) VMware, Inc. 2020-2024. All Rights Reserved.
33
# SPDX-License-Identifier: MIT
44
# *******************************************************
55
# *

src/cbc_syslog/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# *******************************************************
2-
# Copyright (c) VMware, Inc. 2020-2023. All Rights Reserved.
2+
# Copyright (c) VMware, Inc. 2020-2024. All Rights Reserved.
33
# SPDX-License-Identifier: MIT
44
# *******************************************************
55
# *

src/cbc_syslog/util/carbon_black_cloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# *******************************************************
3-
# Copyright (c) VMware, Inc. 2020-2023. All Rights Reserved.
3+
# Copyright (c) VMware, Inc. 2020-2024. All Rights Reserved.
44
# SPDX-License-Identifier: MIT
55
# *******************************************************
66
# *

src/cbc_syslog/util/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# *******************************************************
2-
# Copyright (c) VMware, Inc. 2020-2023. All Rights Reserved.
2+
# Copyright (c) VMware, Inc. 2020-2024. All Rights Reserved.
33
# SPDX-License-Identifier: MIT
44
# *******************************************************
55
# *

src/cbc_syslog/util/example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# *******************************************************
2-
# Copyright (c) VMware, Inc. 2020-2023. All Rights Reserved.
2+
# Copyright (c) VMware, Inc. 2020-2024. All Rights Reserved.
33
# SPDX-License-Identifier: MIT
44
# *******************************************************
55
# *

src/cbc_syslog/util/output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# *******************************************************
3-
# Copyright (c) VMware, Inc. 2020-2023. All Rights Reserved.
3+
# Copyright (c) VMware, Inc. 2020-2024. All Rights Reserved.
44
# SPDX-License-Identifier: MIT
55
# *******************************************************
66
# *

0 commit comments

Comments
 (0)