From ad4ba94fac540ad74264946ba76a8aaec161cca1 Mon Sep 17 00:00:00 2001 From: arturo-seijas <102022572+arturo-seijas@users.noreply.github.com> Date: Tue, 2 Jan 2024 15:21:29 +0100 Subject: [PATCH] Update license headers date (#32) --- LICENSE | 2 +- charmcraft.yaml | 2 +- config.yaml | 2 +- generate-src-docs.sh | 2 +- lib/charms/smtp_integrator/v0/smtp.py | 2 +- metadata.yaml | 2 +- src/charm.py | 2 +- src/charm_state.py | 2 +- tests/conftest.py | 2 +- tests/integration/__init__.py | 2 +- tests/integration/any_charm.py | 2 +- tests/integration/conftest.py | 2 +- tests/integration/test_charm.py | 2 +- tests/unit/__init__.py | 2 +- tests/unit/test_charm.py | 2 +- tests/unit/test_charm_state.py | 2 +- tests/unit/test_library_smtp.py | 2 +- tox.ini | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/LICENSE b/LICENSE index 8d771e1..c4a371b 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2023 Canonical Ltd. + Copyright 2024 Canonical Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/charmcraft.yaml b/charmcraft.yaml index 3a529a3..d8ffab2 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 9a8cf10..82df5a2 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/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/lib/charms/smtp_integrator/v0/smtp.py b/lib/charms/smtp_integrator/v0/smtp.py index 488264b..f32ea7e 100644 --- a/lib/charms/smtp_integrator/v0/smtp.py +++ b/lib/charms/smtp_integrator/v0/smtp.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # Licensed under the Apache2.0. See LICENSE file in charm source for details. """Library to manage the integration with the SMTP Integrator charm. diff --git a/metadata.yaml b/metadata.yaml index 4ebd2e0..ac89726 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: smtp-integrator display-name: SMTP Integrator diff --git a/src/charm.py b/src/charm.py index c41d10e..0bf2e3a 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. """SMTP Integrator Charm service.""" diff --git a/src/charm_state.py b/src/charm_state.py index 637febc..52277cf 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. """Module defining the CharmState class which represents the state of the SMTP Integrator charm.""" diff --git a/tests/conftest.py b/tests/conftest.py index 96d572b..ad7716b 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 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/any_charm.py b/tests/integration/any_charm.py index a87b98f..26d5c96 100644 --- a/tests/integration/any_charm.py +++ b/tests/integration/any_charm.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. # pylint: disable=import-error,consider-using-with,no-member diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 8ed406d..4c4040e 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 the SMTP Integrator charm integration tests.""" diff --git a/tests/integration/test_charm.py b/tests/integration/test_charm.py index 90264ee..3a0fabc 100644 --- a/tests/integration/test_charm.py +++ b/tests/integration/test_charm.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """SMTP Integrator 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 9bd5715..a9e2fb6 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. """Unit tests.""" diff --git a/tests/unit/test_charm_state.py b/tests/unit/test_charm_state.py index ef4ddd8..5765071 100644 --- a/tests/unit/test_charm_state.py +++ b/tests/unit/test_charm_state.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """CharmState unit tests.""" diff --git a/tests/unit/test_library_smtp.py b/tests/unit/test_library_smtp.py index b323214..1afa6db 100644 --- a/tests/unit/test_library_smtp.py +++ b/tests/unit/test_library_smtp.py @@ -1,4 +1,4 @@ -# Copyright 2023 Canonical Ltd. +# Copyright 2024 Canonical Ltd. # See LICENSE file for licensing details. """SMTP library unit tests""" diff --git a/tox.ini b/tox.ini index a4bd9f3..73670b9 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]