From 44f80dbb6ad2324b06bf0c4bcdaee78b106b8ab9 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Thu, 30 Apr 2026 19:28:53 +0200 Subject: [PATCH] Update licenses --- LICENSE | 2 +- src/jcloud_docsgen/__init__.py | 2 +- src/jcloud_docsgen/cli.py | 2 +- src/jcloud_docsgen/core/__init__.py | 2 +- src/jcloud_docsgen/core/python/__init__.py | 2 +- src/jcloud_docsgen/core/python/_core.py | 2 +- src/jcloud_docsgen/core/python/arguments.py | 2 +- src/jcloud_docsgen/core/python/definitions.py | 2 +- src/jcloud_docsgen/core/python/docstrings.py | 2 +- src/jcloud_docsgen/core/python/namespaces.py | 2 +- src/jcloud_docsgen/exceptions.py | 2 +- src/jcloud_docsgen/utils.py | 2 +- .../python/_core/test_PythonDefinitionDocumentationGenerator.py | 2 +- .../unit/core/python/_core/test_PythonDocumentationGenerator.py | 2 +- .../python/_core/test_PythonModuleDocumentationGenerator.py | 2 +- .../core/python/_core/test__argument_kind_human_readable.py | 2 +- tests/unit/core/python/_core/test__collect_definitions.py | 2 +- tests/unit/core/python/_core/test__fit_row_length.py | 2 +- tests/unit/core/python/_core/test__function_params_info.py | 2 +- tests/unit/core/python/_core/test__markdown_table.py | 2 +- tests/unit/core/python/_core/test__signature_argument_list.py | 2 +- .../core/python/arguments/test_PythonASTArgumentsListParser.py | 2 +- tests/unit/core/python/arguments/test_PythonFunctionArgument.py | 2 +- .../unit/core/python/definitions/test_PythonClassDefinition.py | 2 +- tests/unit/core/python/definitions/test_PythonDefinition.py | 2 +- .../core/python/definitions/test_PythonFunctionDefinition.py | 2 +- tests/unit/core/python/namespaces/test_PythonModuleNamespace.py | 2 +- tests/unit/core/python/namespaces/test_PythonNamespace.py | 2 +- .../unit/core/python/namespaces/test_PythonPackageNamespace.py | 2 +- tests/unit/utils/test_ExistingDirectory.py | 2 +- tests/unit/utils/test_ExistingFile.py | 2 +- tests/unit/utils/test_assert_that_is_instance.py | 2 +- tests/unit/utils/test_get_relative_path_segments.py | 2 +- tests/unit/utils/test_human_readable_list.py | 2 +- tests/unit/utils/test_non_empty_str.py | 2 +- tests/utils/ast_node.py | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/LICENSE b/LICENSE index db84ebd..2864cf4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2026 jCloud Services +Copyright 2026 jCloud 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/src/jcloud_docsgen/__init__.py b/src/jcloud_docsgen/__init__.py index 0855020..fc3e458 100644 --- a/src/jcloud_docsgen/__init__.py +++ b/src/jcloud_docsgen/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/cli.py b/src/jcloud_docsgen/cli.py index f3f4605..175fd71 100644 --- a/src/jcloud_docsgen/cli.py +++ b/src/jcloud_docsgen/cli.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/core/__init__.py b/src/jcloud_docsgen/core/__init__.py index 72f5df4..5e53037 100644 --- a/src/jcloud_docsgen/core/__init__.py +++ b/src/jcloud_docsgen/core/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/core/python/__init__.py b/src/jcloud_docsgen/core/python/__init__.py index 5ffc63c..a02c96a 100644 --- a/src/jcloud_docsgen/core/python/__init__.py +++ b/src/jcloud_docsgen/core/python/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/core/python/_core.py b/src/jcloud_docsgen/core/python/_core.py index eb8c1f2..e2b80a8 100644 --- a/src/jcloud_docsgen/core/python/_core.py +++ b/src/jcloud_docsgen/core/python/_core.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/core/python/arguments.py b/src/jcloud_docsgen/core/python/arguments.py index a4a0630..97a114e 100644 --- a/src/jcloud_docsgen/core/python/arguments.py +++ b/src/jcloud_docsgen/core/python/arguments.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/core/python/definitions.py b/src/jcloud_docsgen/core/python/definitions.py index 9b87bc1..f3478e6 100644 --- a/src/jcloud_docsgen/core/python/definitions.py +++ b/src/jcloud_docsgen/core/python/definitions.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/core/python/docstrings.py b/src/jcloud_docsgen/core/python/docstrings.py index 7d28cd2..813cf57 100644 --- a/src/jcloud_docsgen/core/python/docstrings.py +++ b/src/jcloud_docsgen/core/python/docstrings.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/core/python/namespaces.py b/src/jcloud_docsgen/core/python/namespaces.py index edfaa56..8dd6a67 100644 --- a/src/jcloud_docsgen/core/python/namespaces.py +++ b/src/jcloud_docsgen/core/python/namespaces.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/exceptions.py b/src/jcloud_docsgen/exceptions.py index df27f83..52dcf25 100644 --- a/src/jcloud_docsgen/exceptions.py +++ b/src/jcloud_docsgen/exceptions.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/src/jcloud_docsgen/utils.py b/src/jcloud_docsgen/utils.py index 345526c..08d5c6a 100644 --- a/src/jcloud_docsgen/utils.py +++ b/src/jcloud_docsgen/utils.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/_core/test_PythonDefinitionDocumentationGenerator.py b/tests/unit/core/python/_core/test_PythonDefinitionDocumentationGenerator.py index 7068888..88fa35c 100644 --- a/tests/unit/core/python/_core/test_PythonDefinitionDocumentationGenerator.py +++ b/tests/unit/core/python/_core/test_PythonDefinitionDocumentationGenerator.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/_core/test_PythonDocumentationGenerator.py b/tests/unit/core/python/_core/test_PythonDocumentationGenerator.py index 367c8f2..d662cdc 100644 --- a/tests/unit/core/python/_core/test_PythonDocumentationGenerator.py +++ b/tests/unit/core/python/_core/test_PythonDocumentationGenerator.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/_core/test_PythonModuleDocumentationGenerator.py b/tests/unit/core/python/_core/test_PythonModuleDocumentationGenerator.py index f561ce0..db5cd28 100644 --- a/tests/unit/core/python/_core/test_PythonModuleDocumentationGenerator.py +++ b/tests/unit/core/python/_core/test_PythonModuleDocumentationGenerator.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/_core/test__argument_kind_human_readable.py b/tests/unit/core/python/_core/test__argument_kind_human_readable.py index 8fe167c..5f22021 100644 --- a/tests/unit/core/python/_core/test__argument_kind_human_readable.py +++ b/tests/unit/core/python/_core/test__argument_kind_human_readable.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/_core/test__collect_definitions.py b/tests/unit/core/python/_core/test__collect_definitions.py index b23d897..fb3bd4e 100644 --- a/tests/unit/core/python/_core/test__collect_definitions.py +++ b/tests/unit/core/python/_core/test__collect_definitions.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/_core/test__fit_row_length.py b/tests/unit/core/python/_core/test__fit_row_length.py index 8410655..5f93427 100644 --- a/tests/unit/core/python/_core/test__fit_row_length.py +++ b/tests/unit/core/python/_core/test__fit_row_length.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/_core/test__function_params_info.py b/tests/unit/core/python/_core/test__function_params_info.py index 57267b9..f85947f 100644 --- a/tests/unit/core/python/_core/test__function_params_info.py +++ b/tests/unit/core/python/_core/test__function_params_info.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/_core/test__markdown_table.py b/tests/unit/core/python/_core/test__markdown_table.py index 28c8eaa..1e21f84 100644 --- a/tests/unit/core/python/_core/test__markdown_table.py +++ b/tests/unit/core/python/_core/test__markdown_table.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/_core/test__signature_argument_list.py b/tests/unit/core/python/_core/test__signature_argument_list.py index 1c05052..a0a0ef4 100644 --- a/tests/unit/core/python/_core/test__signature_argument_list.py +++ b/tests/unit/core/python/_core/test__signature_argument_list.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/arguments/test_PythonASTArgumentsListParser.py b/tests/unit/core/python/arguments/test_PythonASTArgumentsListParser.py index 51fc900..952b7d7 100644 --- a/tests/unit/core/python/arguments/test_PythonASTArgumentsListParser.py +++ b/tests/unit/core/python/arguments/test_PythonASTArgumentsListParser.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/arguments/test_PythonFunctionArgument.py b/tests/unit/core/python/arguments/test_PythonFunctionArgument.py index acbc7a3..11a99ea 100644 --- a/tests/unit/core/python/arguments/test_PythonFunctionArgument.py +++ b/tests/unit/core/python/arguments/test_PythonFunctionArgument.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/definitions/test_PythonClassDefinition.py b/tests/unit/core/python/definitions/test_PythonClassDefinition.py index ce67783..4605ba8 100644 --- a/tests/unit/core/python/definitions/test_PythonClassDefinition.py +++ b/tests/unit/core/python/definitions/test_PythonClassDefinition.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/definitions/test_PythonDefinition.py b/tests/unit/core/python/definitions/test_PythonDefinition.py index 39e4337..b4bdd9c 100644 --- a/tests/unit/core/python/definitions/test_PythonDefinition.py +++ b/tests/unit/core/python/definitions/test_PythonDefinition.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/definitions/test_PythonFunctionDefinition.py b/tests/unit/core/python/definitions/test_PythonFunctionDefinition.py index 9fb08a1..bd0eee9 100644 --- a/tests/unit/core/python/definitions/test_PythonFunctionDefinition.py +++ b/tests/unit/core/python/definitions/test_PythonFunctionDefinition.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/namespaces/test_PythonModuleNamespace.py b/tests/unit/core/python/namespaces/test_PythonModuleNamespace.py index db45873..41b3f22 100644 --- a/tests/unit/core/python/namespaces/test_PythonModuleNamespace.py +++ b/tests/unit/core/python/namespaces/test_PythonModuleNamespace.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/namespaces/test_PythonNamespace.py b/tests/unit/core/python/namespaces/test_PythonNamespace.py index 9741055..f6eb4b6 100644 --- a/tests/unit/core/python/namespaces/test_PythonNamespace.py +++ b/tests/unit/core/python/namespaces/test_PythonNamespace.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/core/python/namespaces/test_PythonPackageNamespace.py b/tests/unit/core/python/namespaces/test_PythonPackageNamespace.py index 5b43152..92114a8 100644 --- a/tests/unit/core/python/namespaces/test_PythonPackageNamespace.py +++ b/tests/unit/core/python/namespaces/test_PythonPackageNamespace.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/utils/test_ExistingDirectory.py b/tests/unit/utils/test_ExistingDirectory.py index 11379e5..ed101df 100644 --- a/tests/unit/utils/test_ExistingDirectory.py +++ b/tests/unit/utils/test_ExistingDirectory.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/utils/test_ExistingFile.py b/tests/unit/utils/test_ExistingFile.py index a795574..e0e7cdc 100644 --- a/tests/unit/utils/test_ExistingFile.py +++ b/tests/unit/utils/test_ExistingFile.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/utils/test_assert_that_is_instance.py b/tests/unit/utils/test_assert_that_is_instance.py index 935dfa0..6ebb70d 100644 --- a/tests/unit/utils/test_assert_that_is_instance.py +++ b/tests/unit/utils/test_assert_that_is_instance.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/utils/test_get_relative_path_segments.py b/tests/unit/utils/test_get_relative_path_segments.py index a891ac8..7cafc6c 100644 --- a/tests/unit/utils/test_get_relative_path_segments.py +++ b/tests/unit/utils/test_get_relative_path_segments.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/utils/test_human_readable_list.py b/tests/unit/utils/test_human_readable_list.py index a8a8abc..c260d67 100644 --- a/tests/unit/utils/test_human_readable_list.py +++ b/tests/unit/utils/test_human_readable_list.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/unit/utils/test_non_empty_str.py b/tests/unit/utils/test_non_empty_str.py index 49619d8..9d50888 100644 --- a/tests/unit/utils/test_non_empty_str.py +++ b/tests/unit/utils/test_non_empty_str.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # 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/tests/utils/ast_node.py b/tests/utils/ast_node.py index 505921b..f60c4c8 100644 --- a/tests/utils/ast_node.py +++ b/tests/utils/ast_node.py @@ -1,4 +1,4 @@ -# Copyright 2026 jCloud Services +# Copyright 2026 jCloud # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.