From 426b1774b820d6c4b2c653a2021479f029bb6e86 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Sat, 17 Feb 2024 15:08:59 +0300 Subject: [PATCH] Update copyrights --- LICENSE.txt | 2 +- README.md | 2 +- dub.json | 2 +- dub.selections.json | 5 +++++ 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, 37 insertions(+), 32 deletions(-) create mode 100644 dub.selections.json diff --git a/LICENSE.txt b/LICENSE.txt index 248eedd..9864f6e 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2014-2023 Mike Bierlee +Copyright (c) 2014-2024 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 c9fc35f..d6c712f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Poodinis Dependency Injection Framework Version 9.0.0 -Copyright 2014-2023 Mike Bierlee +Copyright 2014-2024 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 1b467f1..877a2fc 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-2023 Mike Bierlee", + "copyright": "Copyright 2014-2024 Mike Bierlee", "license": "MIT", "-ddoxTool": "scod", "-ddoxFilterArgs": [], diff --git a/dub.selections.json b/dub.selections.json new file mode 100644 index 0000000..322586b --- /dev/null +++ b/dub.selections.json @@ -0,0 +1,5 @@ +{ + "fileVersion": 1, + "versions": { + } +} diff --git a/example/annotations/app.d b/example/annotations/app.d index 67716f8..886a0c2 100644 --- a/example/annotations/app.d +++ b/example/annotations/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 4577ed9..7ce06d9 100644 --- a/example/applicationcontext/app.d +++ b/example/applicationcontext/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 e1ddb5e..c323d03 100644 --- a/example/arraycompletion/app.d +++ b/example/arraycompletion/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 000c437..f9bfbb2 100644 --- a/example/constructorinjection/app.d +++ b/example/constructorinjection/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 b26fc29..f0bc3a6 100644 --- a/example/injectioninitializer/app.d +++ b/example/injectioninitializer/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 fffd373..8e5b4e3 100644 --- a/example/postconpredest/app.d +++ b/example/postconpredest/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 53b3164..588fc8a 100644 --- a/example/qualifiers/app.d +++ b/example/qualifiers/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 5a20ef9..8e75a68 100644 --- a/example/quickstart/app.d +++ b/example/quickstart/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 9b2ba80..cae16d8 100644 --- a/example/registeronresolve/app.d +++ b/example/registeronresolve/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 643ce95..a63d1c2 100644 --- a/example/valueinjection/app.d +++ b/example/valueinjection/app.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 a474b3f..93e6a40 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-2023 Mike Bierlee + * Copyright: Copyright Digital Mars 2005 - 2009., Copyright Andrei Alexandrescu 2008-, Jonathan M Davis 2011-., 2014-2024 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 648dacf..6002f00 100644 --- a/source/poodinis/autowire.d +++ b/source/poodinis/autowire.d @@ -9,7 +9,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2023 Mike Bierlee + * Copyright: 2014-2024 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 883ba42..95e1fb7 100644 --- a/source/poodinis/container.d +++ b/source/poodinis/container.d @@ -5,7 +5,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2023 Mike Bierlee + * Copyright: 2014-2024 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 c37e06e..c4b3759 100644 --- a/source/poodinis/context.d +++ b/source/poodinis/context.d @@ -5,7 +5,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2023 Mike Bierlee + * Copyright: 2014-2024 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 4526a62..e6d0dca 100644 --- a/source/poodinis/factory.d +++ b/source/poodinis/factory.d @@ -3,7 +3,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2023 Mike Bierlee + * Copyright: 2014-2024 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 b2eb3c3..c792c2a 100644 --- a/source/poodinis/imports.d +++ b/source/poodinis/imports.d @@ -3,7 +3,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2023 Mike Bierlee + * Copyright: 2014-2024 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 8f4c82c..bdadcb0 100644 --- a/source/poodinis/inject.d +++ b/source/poodinis/inject.d @@ -3,7 +3,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2023 Mike Bierlee + * Copyright: 2014-2024 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 0b33f7a..01942f2 100644 --- a/source/poodinis/package.d +++ b/source/poodinis/package.d @@ -3,7 +3,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2023 Mike Bierlee + * Copyright: 2014-2024 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 bc02843..f81ed38 100644 --- a/source/poodinis/registration.d +++ b/source/poodinis/registration.d @@ -5,7 +5,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2023 Mike Bierlee + * Copyright: 2014-2024 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 c0ce9ac..4efe522 100644 --- a/source/poodinis/valueinjection.d +++ b/source/poodinis/valueinjection.d @@ -4,7 +4,7 @@ * * Authors: * Mike Bierlee, m.bierlee@lostmoment.com - * Copyright: 2014-2023 Mike Bierlee + * Copyright: 2014-2024 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 f571747..b370027 100644 --- a/test/poodinis/autowiretest.d +++ b/test/poodinis/autowiretest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 a218a5f..b663f5d 100644 --- a/test/poodinis/containertest.d +++ b/test/poodinis/containertest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 d35b229..17713b5 100644 --- a/test/poodinis/contexttest.d +++ b/test/poodinis/contexttest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 ec4dff5..7a9b0a7 100644 --- a/test/poodinis/factorytest.d +++ b/test/poodinis/factorytest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 abf908a..95c0916 100644 --- a/test/poodinis/foreigndependencies.d +++ b/test/poodinis/foreigndependencies.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 cd07d3b..bdd76c4 100644 --- a/test/poodinis/registrationtest.d +++ b/test/poodinis/registrationtest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 e5ddab4..4bc8e3b 100644 --- a/test/poodinis/testclasses.d +++ b/test/poodinis/testclasses.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 bb4380a..e8d7b34 100644 --- a/test/poodinis/testmain.d +++ b/test/poodinis/testmain.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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 b74d01e..44cebf4 100644 --- a/test/poodinis/valueinjectiontest.d +++ b/test/poodinis/valueinjectiontest.d @@ -1,6 +1,6 @@ /** * Poodinis Dependency Injection Framework - * Copyright 2014-2023 Mike Bierlee + * Copyright 2014-2024 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. */