From eb7d907631e54a588f93a3a603cb7263541fe9e3 Mon Sep 17 00:00:00 2001 From: Thomas Rabaix Date: Tue, 24 Jun 2025 23:16:36 +0000 Subject: [PATCH] chores(copyright): update dates --- ioc/__init__.py | 2 +- ioc/component.py | 2 +- ioc/event.py | 2 +- ioc/exceptions.py | 2 +- ioc/extra/__init__.py | 2 +- ioc/extra/command/__init__.py | 2 +- ioc/extra/command/command.py | 2 +- ioc/extra/command/di.py | 2 +- ioc/extra/event/__init__.py | 2 +- ioc/extra/event/di.py | 2 +- ioc/extra/flask/__init__.py | 2 +- ioc/extra/flask/command.py | 2 +- ioc/extra/flask/di.py | 2 +- ioc/extra/jinja2/__init__.py | 2 +- ioc/extra/jinja2/di.py | 2 +- ioc/extra/jinja2/helper.py | 2 +- ioc/extra/locator/__init__.py | 2 +- ioc/extra/locator/di.py | 2 +- ioc/extra/mailer/__init__.py | 2 +- ioc/extra/mailer/di.py | 2 +- ioc/extra/redis/__init__.py | 2 +- ioc/extra/redis/di.py | 2 +- ioc/helper.py | 2 +- ioc/loader.py | 2 +- ioc/locator.py | 2 +- ioc/misc.py | 2 +- ioc/proxy.py | 2 +- tests/ioc_test/__init__.py | 2 +- tests/ioc_test/extra/__init__.py | 2 +- tests/ioc_test/extra/jinja/__init__.py | 2 +- tests/ioc_test/extra/jinja/test_helper.py | 2 +- tests/ioc_test/service.py | 2 +- tests/ioc_test/test_component.py | 2 +- tests/ioc_test/test_event.py | 2 +- tests/ioc_test/test_helper.py | 2 +- tests/ioc_test/test_loader.py | 2 +- tests/ioc_test/test_locator.py | 2 +- tests/ioc_test/test_misc.py | 2 +- tests/ioc_test/test_proxy.py | 2 +- 39 files changed, 39 insertions(+), 39 deletions(-) diff --git a/ioc/__init__.py b/ioc/__init__.py index 57013a1..f25cc66 100644 --- a/ioc/__init__.py +++ b/ioc/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/component.py b/ioc/component.py index fa1b0c4..5f7b0f4 100644 --- a/ioc/component.py +++ b/ioc/component.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/event.py b/ioc/event.py index d796881..e63208d 100644 --- a/ioc/event.py +++ b/ioc/event.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/exceptions.py b/ioc/exceptions.py index b304061..61cea4f 100644 --- a/ioc/exceptions.py +++ b/ioc/exceptions.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/__init__.py b/ioc/extra/__init__.py index 672959f..5cb7f57 100644 --- a/ioc/extra/__init__.py +++ b/ioc/extra/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/command/__init__.py b/ioc/extra/command/__init__.py index 8c996be..e786c98 100644 --- a/ioc/extra/command/__init__.py +++ b/ioc/extra/command/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/command/command.py b/ioc/extra/command/command.py index 82f7aed..34081a3 100644 --- a/ioc/extra/command/command.py +++ b/ioc/extra/command/command.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/command/di.py b/ioc/extra/command/di.py index 17636bc..9eadfd5 100644 --- a/ioc/extra/command/di.py +++ b/ioc/extra/command/di.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/event/__init__.py b/ioc/extra/event/__init__.py index 672959f..5cb7f57 100644 --- a/ioc/extra/event/__init__.py +++ b/ioc/extra/event/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/event/di.py b/ioc/extra/event/di.py index 9ad5c87..2c2430a 100644 --- a/ioc/extra/event/di.py +++ b/ioc/extra/event/di.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/flask/__init__.py b/ioc/extra/flask/__init__.py index 672959f..5cb7f57 100644 --- a/ioc/extra/flask/__init__.py +++ b/ioc/extra/flask/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/flask/command.py b/ioc/extra/flask/command.py index fb7f6f3..5bab8a3 100644 --- a/ioc/extra/flask/command.py +++ b/ioc/extra/flask/command.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/flask/di.py b/ioc/extra/flask/di.py index f3beef3..1c1d8b6 100644 --- a/ioc/extra/flask/di.py +++ b/ioc/extra/flask/di.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/jinja2/__init__.py b/ioc/extra/jinja2/__init__.py index 672959f..5cb7f57 100644 --- a/ioc/extra/jinja2/__init__.py +++ b/ioc/extra/jinja2/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/jinja2/di.py b/ioc/extra/jinja2/di.py index 8dee408..861805d 100644 --- a/ioc/extra/jinja2/di.py +++ b/ioc/extra/jinja2/di.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/jinja2/helper.py b/ioc/extra/jinja2/helper.py index 0c7da60..eb0aff9 100644 --- a/ioc/extra/jinja2/helper.py +++ b/ioc/extra/jinja2/helper.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/locator/__init__.py b/ioc/extra/locator/__init__.py index 672959f..5cb7f57 100644 --- a/ioc/extra/locator/__init__.py +++ b/ioc/extra/locator/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/locator/di.py b/ioc/extra/locator/di.py index 45d3a4d..4aad5a1 100644 --- a/ioc/extra/locator/di.py +++ b/ioc/extra/locator/di.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/mailer/__init__.py b/ioc/extra/mailer/__init__.py index 672959f..5cb7f57 100644 --- a/ioc/extra/mailer/__init__.py +++ b/ioc/extra/mailer/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/mailer/di.py b/ioc/extra/mailer/di.py index dd183a2..8f46760 100644 --- a/ioc/extra/mailer/di.py +++ b/ioc/extra/mailer/di.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/redis/__init__.py b/ioc/extra/redis/__init__.py index dd039f0..986c6e3 100644 --- a/ioc/extra/redis/__init__.py +++ b/ioc/extra/redis/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/extra/redis/di.py b/ioc/extra/redis/di.py index 91e4f0a..bf2e943 100644 --- a/ioc/extra/redis/di.py +++ b/ioc/extra/redis/di.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/helper.py b/ioc/helper.py index 92739bb..db99bed 100644 --- a/ioc/helper.py +++ b/ioc/helper.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/loader.py b/ioc/loader.py index 4e28b7f..f3cb0ea 100644 --- a/ioc/loader.py +++ b/ioc/loader.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/locator.py b/ioc/locator.py index 1bbd8e4..28e4b51 100644 --- a/ioc/locator.py +++ b/ioc/locator.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/misc.py b/ioc/misc.py index 12dcb73..ae7b776 100644 --- a/ioc/misc.py +++ b/ioc/misc.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/ioc/proxy.py b/ioc/proxy.py index aeabbcd..85cb482 100644 --- a/ioc/proxy.py +++ b/ioc/proxy.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/__init__.py b/tests/ioc_test/__init__.py index 672959f..5cb7f57 100644 --- a/tests/ioc_test/__init__.py +++ b/tests/ioc_test/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/extra/__init__.py b/tests/ioc_test/extra/__init__.py index 672959f..5cb7f57 100644 --- a/tests/ioc_test/extra/__init__.py +++ b/tests/ioc_test/extra/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/extra/jinja/__init__.py b/tests/ioc_test/extra/jinja/__init__.py index 672959f..5cb7f57 100644 --- a/tests/ioc_test/extra/jinja/__init__.py +++ b/tests/ioc_test/extra/jinja/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/extra/jinja/test_helper.py b/tests/ioc_test/extra/jinja/test_helper.py index 79a44e0..437998a 100644 --- a/tests/ioc_test/extra/jinja/test_helper.py +++ b/tests/ioc_test/extra/jinja/test_helper.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/service.py b/tests/ioc_test/service.py index 6f252f8..9dac944 100644 --- a/tests/ioc_test/service.py +++ b/tests/ioc_test/service.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/test_component.py b/tests/ioc_test/test_component.py index fe892cd..1e18688 100644 --- a/tests/ioc_test/test_component.py +++ b/tests/ioc_test/test_component.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/test_event.py b/tests/ioc_test/test_event.py index dd2d54c..a6586bb 100644 --- a/tests/ioc_test/test_event.py +++ b/tests/ioc_test/test_event.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/test_helper.py b/tests/ioc_test/test_helper.py index 40072e7..24a125f 100644 --- a/tests/ioc_test/test_helper.py +++ b/tests/ioc_test/test_helper.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/test_loader.py b/tests/ioc_test/test_loader.py index 33d14b2..fc9b50a 100644 --- a/tests/ioc_test/test_loader.py +++ b/tests/ioc_test/test_loader.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/test_locator.py b/tests/ioc_test/test_locator.py index d8104c7..0a3ff28 100644 --- a/tests/ioc_test/test_locator.py +++ b/tests/ioc_test/test_locator.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/test_misc.py b/tests/ioc_test/test_misc.py index 067a078..07ee70f 100644 --- a/tests/ioc_test/test_misc.py +++ b/tests/ioc_test/test_misc.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/tests/ioc_test/test_proxy.py b/tests/ioc_test/test_proxy.py index 0e9dd91..8287f8b 100644 --- a/tests/ioc_test/test_proxy.py +++ b/tests/ioc_test/test_proxy.py @@ -1,5 +1,5 @@ # -# Copyright 2014 Thomas Rabaix +# Copyright 2014-2025 Thomas Rabaix # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain