From 63404b7d5a720b672c4d30ad2a7ddfcb3b332d4b Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Sat, 1 Feb 2025 22:35:17 +0100 Subject: [PATCH] Update copyrights --- .vscode/settings.json | 3 ++- LICENSE.txt | 2 +- README.md | 2 +- dub.json | 2 +- example/annotations/app.d | 2 +- example/applicationcontext/app.d | 2 +- example/arraycompletion/app.d | 2 +- example/constructorinjection/app.d | 2 +- example/injectioninitializer/app.d | 2 +- example/postconpredest/app.d | 2 +- example/qualifiers/app.d | 2 +- example/quickstart/app.d | 2 +- example/registeronresolve/app.d | 2 +- example/valueinjection/app.d | 2 +- source/poodinis/altphobos.d | 2 +- source/poodinis/autowire.d | 2 +- source/poodinis/container.d | 2 +- source/poodinis/context.d | 2 +- source/poodinis/factory.d | 2 +- source/poodinis/imports.d | 2 +- source/poodinis/inject.d | 2 +- source/poodinis/package.d | 2 +- source/poodinis/registration.d | 2 +- source/poodinis/valueinjection.d | 2 +- test/poodinis/autowiretest.d | 2 +- test/poodinis/containertest.d | 2 +- test/poodinis/contexttest.d | 2 +- test/poodinis/factorytest.d | 2 +- test/poodinis/foreigndependencies.d | 2 +- test/poodinis/registrationtest.d | 2 +- test/poodinis/testclasses.d | 2 +- test/poodinis/testmain.d | 2 +- test/poodinis/valueinjectiontest.d | 2 +- 33 files changed, 34 insertions(+), 33 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index c65dfde..ccbaa7a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,4 @@ { - "dfmt.braceStyle": "otbs" + "dfmt.braceStyle": "otbs", + "makefile.configureOnOpen": false } diff --git a/LICENSE.txt b/LICENSE.txt index 9864f6e..6e19787 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2014-2024 Mike Bierlee +Copyright (c) 2014-2025 Mike Bierlee Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 2423ba0..3c73f01 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Poodinis Dependency Injection Framework Version 9.0.1 -Copyright 2014-2024 Mike Bierlee +Copyright 2014-2025 Mike Bierlee Licensed under the terms of the MIT license - See [LICENSE.txt](LICENSE.txt) [![DUB Package](https://img.shields.io/dub/v/poodinis.svg)](https://code.dlang.org/packages/poodinis) [![CI](https://github.com/mbierlee/poodinis/actions/workflows/dub.yml/badge.svg)](https://github.com/mbierlee/poodinis/actions/workflows/dub.yml) diff --git a/dub.json b/dub.json index 877a2fc..2843eb0 100644 --- a/dub.json +++ b/dub.json @@ -2,7 +2,7 @@ "name": "poodinis", "description": "A dependency injection framework with support for autowiring.", "authors": ["Mike Bierlee"], - "copyright": "Copyright 2014-2024 Mike Bierlee", + "copyright": "Copyright 2014-2025 Mike Bierlee", "license": "MIT", "-ddoxTool": "scod", "-ddoxFilterArgs": [], diff --git a/example/annotations/app.d b/example/annotations/app.d index fe831f8..98ddf86 100644 --- a/example/annotations/app.d +++ b/example/annotations/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/example/applicationcontext/app.d b/example/applicationcontext/app.d index d8439de..131f2e3 100644 --- a/example/applicationcontext/app.d +++ b/example/applicationcontext/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/example/arraycompletion/app.d b/example/arraycompletion/app.d index 2335ee4..5cec19b 100644 --- a/example/arraycompletion/app.d +++ b/example/arraycompletion/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/example/constructorinjection/app.d b/example/constructorinjection/app.d index add5216..2ff7096 100644 --- a/example/constructorinjection/app.d +++ b/example/constructorinjection/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/example/injectioninitializer/app.d b/example/injectioninitializer/app.d index f0bc3a6..4175558 100644 --- a/example/injectioninitializer/app.d +++ b/example/injectioninitializer/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/example/postconpredest/app.d b/example/postconpredest/app.d index 1490e81..6ce3551 100644 --- a/example/postconpredest/app.d +++ b/example/postconpredest/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/example/qualifiers/app.d b/example/qualifiers/app.d index f1286c6..fb7527e 100644 --- a/example/qualifiers/app.d +++ b/example/qualifiers/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/example/quickstart/app.d b/example/quickstart/app.d index 8e75a68..3c52cf2 100644 --- a/example/quickstart/app.d +++ b/example/quickstart/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/example/registeronresolve/app.d b/example/registeronresolve/app.d index cae16d8..9e8ccc7 100644 --- a/example/registeronresolve/app.d +++ b/example/registeronresolve/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/example/valueinjection/app.d b/example/valueinjection/app.d index dc46c9d..e273d61 100644 --- a/example/valueinjection/app.d +++ b/example/valueinjection/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/source/poodinis/altphobos.d b/source/poodinis/altphobos.d index 93e6a40..c0c2d67 100644 --- a/source/poodinis/altphobos.d +++ b/source/poodinis/altphobos.d @@ -14,7 +14,7 @@ * Kenji Hara, * Shoichi Kato, * Mike Bierlee (m.bierlee@lostmoment.com) - * Copyright: Copyright Digital Mars 2005 - 2009., Copyright Andrei Alexandrescu 2008-, Jonathan M Davis 2011-., 2014-2024 Mike Bierlee + * Copyright: Copyright Digital Mars 2005 - 2009., Copyright Andrei Alexandrescu 2008-, Jonathan M Davis 2011-., 2014-2025 Mike Bierlee * License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0) */ diff --git a/source/poodinis/autowire.d b/source/poodinis/autowire.d index d5401ca..0d5b2f9 100644 --- a/source/poodinis/autowire.d +++ b/source/poodinis/autowire.d @@ -9,7 +9,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2024 Mike Bierlee + * Copyright: 2014-2025 Mike Bierlee * License: * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. diff --git a/source/poodinis/container.d b/source/poodinis/container.d index 2168465..929a3a7 100644 --- a/source/poodinis/container.d +++ b/source/poodinis/container.d @@ -5,7 +5,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2024 Mike Bierlee + * Copyright: 2014-2025 Mike Bierlee * License: * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. diff --git a/source/poodinis/context.d b/source/poodinis/context.d index a164d03..743d258 100644 --- a/source/poodinis/context.d +++ b/source/poodinis/context.d @@ -5,7 +5,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2024 Mike Bierlee + * Copyright: 2014-2025 Mike Bierlee * License: * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. diff --git a/source/poodinis/factory.d b/source/poodinis/factory.d index a0d4816..27b57c5 100644 --- a/source/poodinis/factory.d +++ b/source/poodinis/factory.d @@ -3,7 +3,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2024 Mike Bierlee + * Copyright: 2014-2025 Mike Bierlee * License: * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. diff --git a/source/poodinis/imports.d b/source/poodinis/imports.d index fff993d..a4910f9 100644 --- a/source/poodinis/imports.d +++ b/source/poodinis/imports.d @@ -3,7 +3,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2024 Mike Bierlee + * Copyright: 2014-2025 Mike Bierlee * License: * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. diff --git a/source/poodinis/inject.d b/source/poodinis/inject.d index bdadcb0..5ada302 100644 --- a/source/poodinis/inject.d +++ b/source/poodinis/inject.d @@ -3,7 +3,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2024 Mike Bierlee + * Copyright: 2014-2025 Mike Bierlee * License: * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. diff --git a/source/poodinis/package.d b/source/poodinis/package.d index 01942f2..254f6c8 100644 --- a/source/poodinis/package.d +++ b/source/poodinis/package.d @@ -3,7 +3,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2024 Mike Bierlee + * Copyright: 2014-2025 Mike Bierlee * License: * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. diff --git a/source/poodinis/registration.d b/source/poodinis/registration.d index 1977bfb..5c7207f 100644 --- a/source/poodinis/registration.d +++ b/source/poodinis/registration.d @@ -5,7 +5,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2024 Mike Bierlee + * Copyright: 2014-2025 Mike Bierlee * License: * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. diff --git a/source/poodinis/valueinjection.d b/source/poodinis/valueinjection.d index bd9213e..cb1bbfb 100644 --- a/source/poodinis/valueinjection.d +++ b/source/poodinis/valueinjection.d @@ -4,7 +4,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2024 Mike Bierlee + * Copyright: 2014-2025 Mike Bierlee * License: * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. diff --git a/test/poodinis/autowiretest.d b/test/poodinis/autowiretest.d index b370027..9b397df 100644 --- a/test/poodinis/autowiretest.d +++ b/test/poodinis/autowiretest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/test/poodinis/containertest.d b/test/poodinis/containertest.d index b663f5d..b8a29ca 100644 --- a/test/poodinis/containertest.d +++ b/test/poodinis/containertest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/test/poodinis/contexttest.d b/test/poodinis/contexttest.d index 17713b5..a9c82a7 100644 --- a/test/poodinis/contexttest.d +++ b/test/poodinis/contexttest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/test/poodinis/factorytest.d b/test/poodinis/factorytest.d index 7a9b0a7..fbc4d7b 100644 --- a/test/poodinis/factorytest.d +++ b/test/poodinis/factorytest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/test/poodinis/foreigndependencies.d b/test/poodinis/foreigndependencies.d index 95c0916..62e4efd 100644 --- a/test/poodinis/foreigndependencies.d +++ b/test/poodinis/foreigndependencies.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/test/poodinis/registrationtest.d b/test/poodinis/registrationtest.d index bdd76c4..f0c9f45 100644 --- a/test/poodinis/registrationtest.d +++ b/test/poodinis/registrationtest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/test/poodinis/testclasses.d b/test/poodinis/testclasses.d index 030cfc9..89273ff 100644 --- a/test/poodinis/testclasses.d +++ b/test/poodinis/testclasses.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/test/poodinis/testmain.d b/test/poodinis/testmain.d index e8d7b34..d62c2a8 100644 --- a/test/poodinis/testmain.d +++ b/test/poodinis/testmain.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */ diff --git a/test/poodinis/valueinjectiontest.d b/test/poodinis/valueinjectiontest.d index 57b872e..d7c6d26 100644 --- a/test/poodinis/valueinjectiontest.d +++ b/test/poodinis/valueinjectiontest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2024 Mike Bierlee + * Copyright 2014-2025 Mike Bierlee * This software is licensed under the terms of the MIT license. * The full terms of the license can be found in the LICENSE file. */