From 763bd2f51dfe00e298f90fcec26391a7bba0ae75 Mon Sep 17 00:00:00 2001 From: Yanks Yoon <37652070+yanksyoon@users.noreply.github.com> Date: Wed, 17 Jan 2024 14:04:06 +0800 Subject: [PATCH] chore: update lincense dates (#20) --- charmcraft.yaml | 2 +- config.yaml | 2 +- githubactionsexporter_rock/rockcraft.yaml | 2 +- metadata.yaml | 2 +- pyproject.toml | 2 +- src/charm.py | 2 +- src/charm_state.py | 2 +- src/constants.py | 2 +- src/exceptions.py | 2 +- src/github_actions_exporter.py | 2 +- tests/conftest.py | 2 +- tests/integration/__init__.py | 2 +- tests/integration/conftest.py | 2 +- tests/integration/test_charm.py | 2 +- tests/unit/__init__.py | 2 +- tests/unit/test_charm.py | 2 +- tox.ini | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/charmcraft.yaml b/charmcraft.yaml index f513b7a..c75e1f5 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 ba09837..f869255 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: diff --git a/githubactionsexporter_rock/rockcraft.yaml b/githubactionsexporter_rock/rockcraft.yaml index 79d2cf0..a0a25c6 100644 --- a/githubactionsexporter_rock/rockcraft.yaml +++ b/githubactionsexporter_rock/rockcraft.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. name: github-actions-exporter summary: github-actions-exporter rock diff --git a/metadata.yaml b/metadata.yaml index 6d38e19..27c7af8 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: github-actions-exporter display-name: GitHub Actions Exporter diff --git a/pyproject.toml b/pyproject.toml index 1156183..bf23ef5 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 df89ed0..37bd82b 100755 --- a/src/charm.py +++ b/src/charm.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """Charm for GitHub Actions Exporter on kubernetes.""" diff --git a/src/charm_state.py b/src/charm_state.py index a45abc6..aa9a27c 100644 --- a/src/charm_state.py +++ b/src/charm_state.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """State of the Charm.""" diff --git a/src/constants.py b/src/constants.py index fb53ec2..63be3c2 100644 --- a/src/constants.py +++ b/src/constants.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """This module defines constants used throughout the application.""" diff --git a/src/exceptions.py b/src/exceptions.py index 9114b5a..3af0a11 100644 --- a/src/exceptions.py +++ b/src/exceptions.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """Exceptions used by the GitHub Actions Exporter charm.""" diff --git a/src/github_actions_exporter.py b/src/github_actions_exporter.py index f10399e..9e2440b 100644 --- a/src/github_actions_exporter.py +++ b/src/github_actions_exporter.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """Helper module used to manage interactions with GitHub Actions Exporter.""" diff --git a/tests/conftest.py b/tests/conftest.py index 07793db..b95e880 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. """Fixtures for GitHub Actions Export charm tests.""" diff --git a/tests/integration/__init__.py b/tests/integration/__init__.py index db3bfe1..e3979c0 100644 --- a/tests/integration/__init__.py +++ b/tests/integration/__init__.py @@ -1,2 +1,2 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 9067e56..b320bfe 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 GitHub Actions Export charm integration tests.""" diff --git a/tests/integration/test_charm.py b/tests/integration/test_charm.py index 0a3d31d..ccc3fb0 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. """GitHub Actions Export charm 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 92db33e..2b22727 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. """GitHub Actions Exporter charm unit tests.""" diff --git a/tox.ini b/tox.ini index 0a38304..7fd04f5 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]