From a06d0488d8af8e3846e5115bce14743cdd35026c Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Mon, 16 Dec 2024 16:23:01 +0100 Subject: [PATCH] Update copyright to 2025 (#485) --- license_header.txt | 2 +- silkaj/__init__.py | 2 +- silkaj/about.py | 2 +- silkaj/auth.py | 2 +- silkaj/blockchain/__init__.py | 2 +- silkaj/blockchain/blocks.py | 2 +- silkaj/blockchain/difficulty.py | 2 +- silkaj/blockchain/information.py | 2 +- silkaj/blockchain/tools.py | 2 +- silkaj/checksum.py | 2 +- silkaj/cli.py | 2 +- silkaj/constants.py | 2 +- silkaj/g1_monetary_license.py | 2 +- silkaj/money/__init__.py | 2 +- silkaj/money/balance.py | 2 +- silkaj/money/history.py | 2 +- silkaj/money/tools.py | 2 +- silkaj/money/transfer.py | 2 +- silkaj/network.py | 2 +- silkaj/public_key.py | 2 +- silkaj/tools.py | 2 +- silkaj/tui.py | 2 +- silkaj/wot/__init__.py | 2 +- silkaj/wot/certification.py | 2 +- silkaj/wot/exclusions.py | 2 +- silkaj/wot/idty_tools.py | 2 +- silkaj/wot/lookup.py | 2 +- silkaj/wot/membership.py | 2 +- silkaj/wot/revocation.py | 2 +- silkaj/wot/status.py | 2 +- silkaj/wot/tools.py | 2 +- tests/__init__.py | 2 +- tests/helpers.py | 2 +- tests/integration/__init__.py | 2 +- tests/integration/test_end_to_end.py | 2 +- tests/integration/wot/__init__.py | 2 +- tests/integration/wot/test_membership.py | 2 +- tests/patched/__init__.py | 2 +- tests/patched/auth.py | 2 +- tests/patched/blockchain_tools.py | 2 +- tests/patched/idty_tools.py | 2 +- tests/patched/money.py | 2 +- tests/patched/test_constants.py | 2 +- tests/patched/tools.py | 2 +- tests/patched/tx.py | 2 +- tests/patched/tx_history.py | 2 +- tests/patched/wot.py | 2 +- tests/unit/__init__.py | 2 +- tests/unit/money/__init__.py | 2 +- tests/unit/money/test_history.py | 2 +- tests/unit/money/test_tools.py | 2 +- tests/unit/money/test_transfer.py | 2 +- tests/unit/money/test_transfer_cli.py | 2 +- tests/unit/money/test_transfer_file.py | 2 +- tests/unit/test_auth.py | 2 +- tests/unit/test_checksum.py | 2 +- tests/unit/test_cli.py | 2 +- tests/unit/test_g1_monetary_license.py | 2 +- tests/unit/test_network.py | 2 +- tests/unit/test_public_key.py | 2 +- tests/unit/test_tui.py | 2 +- tests/unit/wot/__init__.py | 2 +- tests/unit/wot/test_certification.py | 2 +- tests/unit/wot/test_exclusions.py | 2 +- tests/unit/wot/test_idty_tools.py | 2 +- tests/unit/wot/test_membership.py | 2 +- tests/unit/wot/test_revocation.py | 2 +- tests/unit/wot/test_tools.py | 2 +- 68 files changed, 68 insertions(+), 68 deletions(-) diff --git a/license_header.txt b/license_header.txt index 64f817a8..f17c9c06 100644 --- a/license_header.txt +++ b/license_header.txt @@ -1,4 +1,4 @@ -Copyright 2016-2024 Maël Azimi <m.a@moul.re> +Copyright 2016-2025 Maël Azimi <m.a@moul.re> Silkaj is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/__init__.py b/silkaj/__init__.py index d9c0b48c..27f95ecf 100644 --- a/silkaj/__init__.py +++ b/silkaj/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/about.py b/silkaj/about.py index ede9cc2c..f4bd7636 100644 --- a/silkaj/about.py +++ b/silkaj/about.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/auth.py b/silkaj/auth.py index 92a0be58..90f22fff 100644 --- a/silkaj/auth.py +++ b/silkaj/auth.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/__init__.py b/silkaj/blockchain/__init__.py index 6e019ba1..5b850158 100644 --- a/silkaj/blockchain/__init__.py +++ b/silkaj/blockchain/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/blocks.py b/silkaj/blockchain/blocks.py index 99dbcc5d..9225fa1c 100644 --- a/silkaj/blockchain/blocks.py +++ b/silkaj/blockchain/blocks.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/difficulty.py b/silkaj/blockchain/difficulty.py index 51fd99a4..a0faaa95 100644 --- a/silkaj/blockchain/difficulty.py +++ b/silkaj/blockchain/difficulty.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/information.py b/silkaj/blockchain/information.py index bfd31467..f83083fa 100644 --- a/silkaj/blockchain/information.py +++ b/silkaj/blockchain/information.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/tools.py b/silkaj/blockchain/tools.py index 746906f8..53fde61e 100644 --- a/silkaj/blockchain/tools.py +++ b/silkaj/blockchain/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/checksum.py b/silkaj/checksum.py index 61357d1e..8214d6c4 100644 --- a/silkaj/checksum.py +++ b/silkaj/checksum.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/cli.py b/silkaj/cli.py index c4030a60..b3e2fc62 100644 --- a/silkaj/cli.py +++ b/silkaj/cli.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/constants.py b/silkaj/constants.py index 49d8c235..10b48d92 100644 --- a/silkaj/constants.py +++ b/silkaj/constants.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/g1_monetary_license.py b/silkaj/g1_monetary_license.py index 0a8cce6a..37c3b83f 100644 --- a/silkaj/g1_monetary_license.py +++ b/silkaj/g1_monetary_license.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/__init__.py b/silkaj/money/__init__.py index 6e019ba1..5b850158 100644 --- a/silkaj/money/__init__.py +++ b/silkaj/money/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/balance.py b/silkaj/money/balance.py index ba9f41df..25f1d5e0 100644 --- a/silkaj/money/balance.py +++ b/silkaj/money/balance.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/history.py b/silkaj/money/history.py index cb92dfa9..d1a35ae0 100644 --- a/silkaj/money/history.py +++ b/silkaj/money/history.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/tools.py b/silkaj/money/tools.py index a1484971..2e16ae13 100644 --- a/silkaj/money/tools.py +++ b/silkaj/money/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/transfer.py b/silkaj/money/transfer.py index d88828cd..a0144cbf 100644 --- a/silkaj/money/transfer.py +++ b/silkaj/money/transfer.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/network.py b/silkaj/network.py index 6eff7db3..6365fe34 100644 --- a/silkaj/network.py +++ b/silkaj/network.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/public_key.py b/silkaj/public_key.py index 4caeaf67..f1a922d6 100644 --- a/silkaj/public_key.py +++ b/silkaj/public_key.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/tools.py b/silkaj/tools.py index c57b3fb7..fc6e11f6 100644 --- a/silkaj/tools.py +++ b/silkaj/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/tui.py b/silkaj/tui.py index 3811d16f..421fa2b0 100644 --- a/silkaj/tui.py +++ b/silkaj/tui.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/__init__.py b/silkaj/wot/__init__.py index 6e019ba1..5b850158 100644 --- a/silkaj/wot/__init__.py +++ b/silkaj/wot/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/certification.py b/silkaj/wot/certification.py index a4e5b1fa..d055819b 100644 --- a/silkaj/wot/certification.py +++ b/silkaj/wot/certification.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/exclusions.py b/silkaj/wot/exclusions.py index a819c1c8..d0e864b6 100644 --- a/silkaj/wot/exclusions.py +++ b/silkaj/wot/exclusions.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/idty_tools.py b/silkaj/wot/idty_tools.py index 8722044e..2febdafb 100644 --- a/silkaj/wot/idty_tools.py +++ b/silkaj/wot/idty_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/lookup.py b/silkaj/wot/lookup.py index 73971ad4..b8fb81a2 100644 --- a/silkaj/wot/lookup.py +++ b/silkaj/wot/lookup.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/membership.py b/silkaj/wot/membership.py index b820017d..2da7efeb 100644 --- a/silkaj/wot/membership.py +++ b/silkaj/wot/membership.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/revocation.py b/silkaj/wot/revocation.py index 405c4ebd..a90a5c21 100644 --- a/silkaj/wot/revocation.py +++ b/silkaj/wot/revocation.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/status.py b/silkaj/wot/status.py index 2fdd8750..0f1db8cf 100644 --- a/silkaj/wot/status.py +++ b/silkaj/wot/status.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/tools.py b/silkaj/wot/tools.py index c5077f14..4b57e471 100644 --- a/silkaj/wot/tools.py +++ b/silkaj/wot/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/__init__.py b/tests/__init__.py index 6e019ba1..5b850158 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/helpers.py b/tests/helpers.py index 7f9ace63..53c4fe66 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/__init__.py b/tests/integration/__init__.py index 6e019ba1..5b850158 100644 --- a/tests/integration/__init__.py +++ b/tests/integration/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/test_end_to_end.py b/tests/integration/test_end_to_end.py index 9ed6f2fc..92bd7103 100644 --- a/tests/integration/test_end_to_end.py +++ b/tests/integration/test_end_to_end.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/wot/__init__.py b/tests/integration/wot/__init__.py index 6e019ba1..5b850158 100644 --- a/tests/integration/wot/__init__.py +++ b/tests/integration/wot/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/wot/test_membership.py b/tests/integration/wot/test_membership.py index 810f98f5..2e114278 100644 --- a/tests/integration/wot/test_membership.py +++ b/tests/integration/wot/test_membership.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/__init__.py b/tests/patched/__init__.py index 6e019ba1..5b850158 100644 --- a/tests/patched/__init__.py +++ b/tests/patched/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/auth.py b/tests/patched/auth.py index b30e7386..4582708d 100644 --- a/tests/patched/auth.py +++ b/tests/patched/auth.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/blockchain_tools.py b/tests/patched/blockchain_tools.py index f3909d1a..ed7b4c03 100644 --- a/tests/patched/blockchain_tools.py +++ b/tests/patched/blockchain_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/idty_tools.py b/tests/patched/idty_tools.py index fee00151..ac874546 100644 --- a/tests/patched/idty_tools.py +++ b/tests/patched/idty_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/money.py b/tests/patched/money.py index eccd9eba..b07308bd 100644 --- a/tests/patched/money.py +++ b/tests/patched/money.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/test_constants.py b/tests/patched/test_constants.py index bd9cedf9..e943eaf7 100644 --- a/tests/patched/test_constants.py +++ b/tests/patched/test_constants.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/tools.py b/tests/patched/tools.py index 963f147d..9ff055af 100644 --- a/tests/patched/tools.py +++ b/tests/patched/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/tx.py b/tests/patched/tx.py index 9e4e5d3c..30245d01 100644 --- a/tests/patched/tx.py +++ b/tests/patched/tx.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/tx_history.py b/tests/patched/tx_history.py index 782d192e..0da09604 100644 --- a/tests/patched/tx_history.py +++ b/tests/patched/tx_history.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/wot.py b/tests/patched/wot.py index df19fffd..41c12c3f 100644 --- a/tests/patched/wot.py +++ b/tests/patched/wot.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index 6e019ba1..5b850158 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/__init__.py b/tests/unit/money/__init__.py index 6e019ba1..5b850158 100644 --- a/tests/unit/money/__init__.py +++ b/tests/unit/money/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_history.py b/tests/unit/money/test_history.py index 2e07934e..07aed17b 100644 --- a/tests/unit/money/test_history.py +++ b/tests/unit/money/test_history.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_tools.py b/tests/unit/money/test_tools.py index 33dcdbaf..318024d7 100644 --- a/tests/unit/money/test_tools.py +++ b/tests/unit/money/test_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_transfer.py b/tests/unit/money/test_transfer.py index ba0a6172..639f2a6d 100644 --- a/tests/unit/money/test_transfer.py +++ b/tests/unit/money/test_transfer.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_transfer_cli.py b/tests/unit/money/test_transfer_cli.py index 4f8cd51f..af25481b 100644 --- a/tests/unit/money/test_transfer_cli.py +++ b/tests/unit/money/test_transfer_cli.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_transfer_file.py b/tests/unit/money/test_transfer_file.py index 851a3c06..52f800b5 100644 --- a/tests/unit/money/test_transfer_file.py +++ b/tests/unit/money/test_transfer_file.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_auth.py b/tests/unit/test_auth.py index f5f3ac5e..32c5ef7f 100644 --- a/tests/unit/test_auth.py +++ b/tests/unit/test_auth.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_checksum.py b/tests/unit/test_checksum.py index 79efd444..eab8a72c 100644 --- a/tests/unit/test_checksum.py +++ b/tests/unit/test_checksum.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_cli.py b/tests/unit/test_cli.py index b4975876..32e538d5 100644 --- a/tests/unit/test_cli.py +++ b/tests/unit/test_cli.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_g1_monetary_license.py b/tests/unit/test_g1_monetary_license.py index 80c77e63..528a9423 100644 --- a/tests/unit/test_g1_monetary_license.py +++ b/tests/unit/test_g1_monetary_license.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_network.py b/tests/unit/test_network.py index f8d72443..1b0995b0 100644 --- a/tests/unit/test_network.py +++ b/tests/unit/test_network.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_public_key.py b/tests/unit/test_public_key.py index 450832d1..e90b8bd9 100644 --- a/tests/unit/test_public_key.py +++ b/tests/unit/test_public_key.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_tui.py b/tests/unit/test_tui.py index 5a0622af..9969a429 100644 --- a/tests/unit/test_tui.py +++ b/tests/unit/test_tui.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/__init__.py b/tests/unit/wot/__init__.py index 6e019ba1..5b850158 100644 --- a/tests/unit/wot/__init__.py +++ b/tests/unit/wot/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_certification.py b/tests/unit/wot/test_certification.py index 3f74dd79..bbce1ce2 100644 --- a/tests/unit/wot/test_certification.py +++ b/tests/unit/wot/test_certification.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_exclusions.py b/tests/unit/wot/test_exclusions.py index 4191a066..737aec5c 100644 --- a/tests/unit/wot/test_exclusions.py +++ b/tests/unit/wot/test_exclusions.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_idty_tools.py b/tests/unit/wot/test_idty_tools.py index edc157c8..446bd482 100644 --- a/tests/unit/wot/test_idty_tools.py +++ b/tests/unit/wot/test_idty_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_membership.py b/tests/unit/wot/test_membership.py index 91c225fb..b55f81d8 100644 --- a/tests/unit/wot/test_membership.py +++ b/tests/unit/wot/test_membership.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_revocation.py b/tests/unit/wot/test_revocation.py index cbca7b84..7fd6eccd 100644 --- a/tests/unit/wot/test_revocation.py +++ b/tests/unit/wot/test_revocation.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_tools.py b/tests/unit/wot/test_tools.py index ee45d6de..b11268d5 100644 --- a/tests/unit/wot/test_tools.py +++ b/tests/unit/wot/test_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2024 Maël Azimi <m.a@moul.re> +# Copyright 2016-2025 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by -- GitLab