diff --git a/actions.yaml b/actions.yaml index 2ccf890..de74c68 100644 --- a/actions.yaml +++ b/actions.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. grant-admin-role: description: > diff --git a/charmcraft.yaml b/charmcraft.yaml index 8c56ce9..e5ffab5 100644 --- a/charmcraft.yaml +++ b/charmcraft.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. type: "charm" bases: diff --git a/config.yaml b/config.yaml index 26ecf69..29012e5 100644 --- a/config.yaml +++ b/config.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. options: clustering: diff --git a/generate-src-docs.sh b/generate-src-docs.sh index 2e6195c..d13066a 100644 --- a/generate-src-docs.sh +++ b/generate-src-docs.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. lazydocs --no-watermark --output-path src-docs src/* diff --git a/mattermost.Dockerfile b/mattermost.Dockerfile index f31b452..a488684 100644 --- a/mattermost.Dockerfile +++ b/mattermost.Dockerfile @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. FROM ubuntu:focal@sha256:ed4a42283d9943135ed87d4ee34e542f7f5ad9ecf2f244870e23122f703f91c2 AS canonical_flavour_builder diff --git a/metadata.yaml b/metadata.yaml index 57cdafa..fb95e37 100644 --- a/metadata.yaml +++ b/metadata.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. name: mattermost-k8s display-name: Mattermost diff --git a/pyproject.toml b/pyproject.toml index 54436b3..3c99300 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. [tool.bandit] diff --git a/src/charm.py b/src/charm.py index 50139ce..333b0fd 100755 --- a/src/charm.py +++ b/src/charm.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. import logging diff --git a/src/environment.py b/src/environment.py index 76dcd67..10cd3f9 100644 --- a/src/environment.py +++ b/src/environment.py @@ -1,5 +1,5 @@ """Generate container app environment based on charm configuration.""" -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. import json diff --git a/src/utils.py b/src/utils.py index 4c849c8..9a94a70 100644 --- a/src/utils.py +++ b/src/utils.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. from copy import deepcopy diff --git a/tests/conftest.py b/tests/conftest.py index 225d580..2e9e49a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """General configuration module for tests.""" diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index f3a02f7..ae855d0 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """Fixtures for Mattermost charm integration tests.""" diff --git a/tests/integration/localstack-installation.sh b/tests/integration/localstack-installation.sh index e43e73e..36a73e3 100644 --- a/tests/integration/localstack-installation.sh +++ b/tests/integration/localstack-installation.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. pip install pip --upgrade diff --git a/tests/integration/test_charm.py b/tests/integration/test_charm.py index 184c5c7..72e6d55 100644 --- a/tests/integration/test_charm.py +++ b/tests/integration/test_charm.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. import json diff --git a/tests/integration/utils.py b/tests/integration/utils.py index 2ab172d..5e1bb2d 100644 --- a/tests/integration/utils.py +++ b/tests/integration/utils.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """Some utility functions used in integration tests.""" diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index db3bfe1..e3979c0 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -1,2 +1,2 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. diff --git a/tests/unit/test_charm.py b/tests/unit/test_charm.py index 95b7418..78c61e5 100644 --- a/tests/unit/test_charm.py +++ b/tests/unit/test_charm.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. import unittest diff --git a/tests/unit/test_environment.py b/tests/unit/test_environment.py index dabe8e9..d5ff07d 100644 --- a/tests/unit/test_environment.py +++ b/tests/unit/test_environment.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. import os diff --git a/tests/unit/test_helpers.py b/tests/unit/test_helpers.py index 156f1e5..72eea6d 100644 --- a/tests/unit/test_helpers.py +++ b/tests/unit/test_helpers.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. import unittest diff --git a/tests/unit/test_utils.py b/tests/unit/test_utils.py index 8af6b30..966725b 100644 --- a/tests/unit/test_utils.py +++ b/tests/unit/test_utils.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. import unittest diff --git a/tox.ini b/tox.ini index 98d92e0..aad281b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. [tox]