diff --git a/LICENSE b/LICENSE index 3c6b906..4b5f6ad 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Carbon Black +Copyright (c) 2020-2021 Carbon Black Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index ab87038..53b5faa 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ [![Coverage Status](https://coveralls.io/repos/github/carbonblack/cbc-binary-toolkit/badge.svg?branch=develop)](https://coveralls.io/github/carbonblack/cbc-binary-toolkit?branch=develop) # Carbon Black Cloud Binary Toolkit -**Latest Version:** 1.1.0 +**Latest Version:** 1.1.1
-**Release Date:** 11/20/2020 +**Release Date:** 03/31/2021 The Carbon Black Cloud Binary Toolkit provides a system of processing incoming SHA256 hashes by integrating with the Unified Binary Store (UBS) on the Carbon Black Cloud (CBC). diff --git a/VERSION b/VERSION index 9084fa2..524cb55 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.0 +1.1.1 diff --git a/requirements.txt b/requirements.txt index 4245354..aecbc1a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ # Package dependencies -carbon-black-cloud-sdk -python-dateutil -pyyaml -requests -schema -yara-python +carbon-black-cloud-sdk>=1.2.0 +python-dateutil>=2.8.1 +PyYAML>=5.4.1 +requests>=2.25.1 +schema>=0.7.4 +yara-python>=4.0.5 # Dev dependencies pytest==5.4.2 diff --git a/setup.py b/setup.py index a52fa98..5bac23d 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def read(fname): long_description_content_type='text/markdown', platforms="any", classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "Operating System :: OS Independent", diff --git a/src/cbc_binary_toolkit/cli_input.py b/src/cbc_binary_toolkit/cli_input.py index ba48aed..adf94bb 100644 --- a/src/cbc_binary_toolkit/cli_input.py +++ b/src/cbc_binary_toolkit/cli_input.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/config/errors.py b/src/cbc_binary_toolkit/config/errors.py index 9daba29..753a756 100755 --- a/src/cbc_binary_toolkit/config/errors.py +++ b/src/cbc_binary_toolkit/config/errors.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/config/model.py b/src/cbc_binary_toolkit/config/model.py index 5389c56..69fff1f 100755 --- a/src/cbc_binary_toolkit/config/model.py +++ b/src/cbc_binary_toolkit/config/model.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/deduplication_component.py b/src/cbc_binary_toolkit/deduplication_component.py index b2c5851..9c19604 100755 --- a/src/cbc_binary_toolkit/deduplication_component.py +++ b/src/cbc_binary_toolkit/deduplication_component.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/engine/manager.py b/src/cbc_binary_toolkit/engine/manager.py index bbb43e4..973d7c4 100644 --- a/src/cbc_binary_toolkit/engine/manager.py +++ b/src/cbc_binary_toolkit/engine/manager.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/engine_results.py b/src/cbc_binary_toolkit/engine_results.py index 133b494..355a866 100644 --- a/src/cbc_binary_toolkit/engine_results.py +++ b/src/cbc_binary_toolkit/engine_results.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/errors.py b/src/cbc_binary_toolkit/errors.py index 215825c..18b3b90 100644 --- a/src/cbc_binary_toolkit/errors.py +++ b/src/cbc_binary_toolkit/errors.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/ingestion_component.py b/src/cbc_binary_toolkit/ingestion_component.py index 1afaa05..25fe9a0 100644 --- a/src/cbc_binary_toolkit/ingestion_component.py +++ b/src/cbc_binary_toolkit/ingestion_component.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/loader.py b/src/cbc_binary_toolkit/loader.py index dbf9362..e265f65 100755 --- a/src/cbc_binary_toolkit/loader.py +++ b/src/cbc_binary_toolkit/loader.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/schemas.py b/src/cbc_binary_toolkit/schemas.py index d89b8e0..0589b9d 100644 --- a/src/cbc_binary_toolkit/schemas.py +++ b/src/cbc_binary_toolkit/schemas.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/state/builtin.py b/src/cbc_binary_toolkit/state/builtin.py index d3669cc..682ce0d 100755 --- a/src/cbc_binary_toolkit/state/builtin.py +++ b/src/cbc_binary_toolkit/state/builtin.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/state/manager.py b/src/cbc_binary_toolkit/state/manager.py index 1a2af98..fa7533f 100755 --- a/src/cbc_binary_toolkit/state/manager.py +++ b/src/cbc_binary_toolkit/state/manager.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit/ubs.py b/src/cbc_binary_toolkit/ubs.py index 2f4f872..77b5d0f 100644 --- a/src/cbc_binary_toolkit/ubs.py +++ b/src/cbc_binary_toolkit/ubs.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit_examples/engine/yara_local/yara_engine.py b/src/cbc_binary_toolkit_examples/engine/yara_local/yara_engine.py index 31f1015..f5c1cc4 100644 --- a/src/cbc_binary_toolkit_examples/engine/yara_local/yara_engine.py +++ b/src/cbc_binary_toolkit_examples/engine/yara_local/yara_engine.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/cbc_binary_toolkit_examples/tools/analysis_util.py b/src/cbc_binary_toolkit_examples/tools/analysis_util.py index 540207c..9ca97e4 100755 --- a/src/cbc_binary_toolkit_examples/tools/analysis_util.py +++ b/src/cbc_binary_toolkit_examples/tools/analysis_util.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/engine_fixtures/messages.py b/src/tests/component/engine_fixtures/messages.py index ceaf71d..3626938 100644 --- a/src/tests/component/engine_fixtures/messages.py +++ b/src/tests/component/engine_fixtures/messages.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/engine_fixtures/mock_engine.py b/src/tests/component/engine_fixtures/mock_engine.py index 26883f8..4a0d5a8 100644 --- a/src/tests/component/engine_fixtures/mock_engine.py +++ b/src/tests/component/engine_fixtures/mock_engine.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/input_fixtures/file_path_constants.py b/src/tests/component/input_fixtures/file_path_constants.py index 1d349f6..f8b530c 100644 --- a/src/tests/component/input_fixtures/file_path_constants.py +++ b/src/tests/component/input_fixtures/file_path_constants.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/persistor_fixtures/mock_persistor.py b/src/tests/component/persistor_fixtures/mock_persistor.py index 9dd80d9..50ad344 100644 --- a/src/tests/component/persistor_fixtures/mock_persistor.py +++ b/src/tests/component/persistor_fixtures/mock_persistor.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/schema_fixtures/mock_data.py b/src/tests/component/schema_fixtures/mock_data.py index 28f0620..25584c9 100644 --- a/src/tests/component/schema_fixtures/mock_data.py +++ b/src/tests/component/schema_fixtures/mock_data.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_builtin_persistor.py b/src/tests/component/test_builtin_persistor.py index f6af67d..ecae078 100755 --- a/src/tests/component/test_builtin_persistor.py +++ b/src/tests/component/test_builtin_persistor.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_cli_input.py b/src/tests/component/test_cli_input.py index 6fbd737..78aa500 100644 --- a/src/tests/component/test_cli_input.py +++ b/src/tests/component/test_cli_input.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_config.py b/src/tests/component/test_config.py index 8eb31b9..69952e8 100755 --- a/src/tests/component/test_config.py +++ b/src/tests/component/test_config.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_deduplication_component.py b/src/tests/component/test_deduplication_component.py index 91f5278..c82af2f 100755 --- a/src/tests/component/test_deduplication_component.py +++ b/src/tests/component/test_deduplication_component.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_engine_manager.py b/src/tests/component/test_engine_manager.py index d4766a2..9ec859c 100644 --- a/src/tests/component/test_engine_manager.py +++ b/src/tests/component/test_engine_manager.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_engine_results.py b/src/tests/component/test_engine_results.py index a66f5d3..8d9093a 100644 --- a/src/tests/component/test_engine_results.py +++ b/src/tests/component/test_engine_results.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_ingestion_component.py b/src/tests/component/test_ingestion_component.py index 82f4b53..d1254bd 100644 --- a/src/tests/component/test_ingestion_component.py +++ b/src/tests/component/test_ingestion_component.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_loader.py b/src/tests/component/test_loader.py index 570213e..59d7523 100755 --- a/src/tests/component/test_loader.py +++ b/src/tests/component/test_loader.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_persistence_manager.py b/src/tests/component/test_persistence_manager.py index b9a67ad..e0bb520 100755 --- a/src/tests/component/test_persistence_manager.py +++ b/src/tests/component/test_persistence_manager.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_schemas.py b/src/tests/component/test_schemas.py index 892a96f..8889184 100644 --- a/src/tests/component/test_schemas.py +++ b/src/tests/component/test_schemas.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/test_ubs.py b/src/tests/component/test_ubs.py index dbc38c3..69ece18 100644 --- a/src/tests/component/test_ubs.py +++ b/src/tests/component/test_ubs.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/ubs_fixtures/CBCloudAPIMock.py b/src/tests/component/ubs_fixtures/CBCloudAPIMock.py index 7111f16..f3ade48 100644 --- a/src/tests/component/ubs_fixtures/CBCloudAPIMock.py +++ b/src/tests/component/ubs_fixtures/CBCloudAPIMock.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/ubs_fixtures/filedownload.py b/src/tests/component/ubs_fixtures/filedownload.py index ce91b81..e8d069d 100644 --- a/src/tests/component/ubs_fixtures/filedownload.py +++ b/src/tests/component/ubs_fixtures/filedownload.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/component/ubs_fixtures/metadata.py b/src/tests/component/ubs_fixtures/metadata.py index b08ac29..007e8ee 100644 --- a/src/tests/component/ubs_fixtures/metadata.py +++ b/src/tests/component/ubs_fixtures/metadata.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/conftest.py b/src/tests/conftest.py index 7ffaaa9..bb743c1 100644 --- a/src/tests/conftest.py +++ b/src/tests/conftest.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/examples/test_yara_local.py b/src/tests/examples/test_yara_local.py index 45867d1..5e819c3 100644 --- a/src/tests/examples/test_yara_local.py +++ b/src/tests/examples/test_yara_local.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/functional/test_main.py b/src/tests/functional/test_main.py index 90bd990..2c191fa 100644 --- a/src/tests/functional/test_main.py +++ b/src/tests/functional/test_main.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/integration/test_analysis_util.py b/src/tests/integration/test_analysis_util.py index deb5c01..30005d2 100755 --- a/src/tests/integration/test_analysis_util.py +++ b/src/tests/integration/test_analysis_util.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/integration/test_components.py b/src/tests/integration/test_components.py index abdfa18..af3fa6d 100644 --- a/src/tests/integration/test_components.py +++ b/src/tests/integration/test_components.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # * diff --git a/src/tests/load/test_load.py b/src/tests/load/test_load.py index 3a49317..08bc16a 100644 --- a/src/tests/load/test_load.py +++ b/src/tests/load/test_load.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # ******************************************************* -# Copyright (c) VMware, Inc. 2020. All Rights Reserved. +# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved. # SPDX-License-Identifier: MIT # ******************************************************* # *