diff --git a/source/adt/include/adt/adt.h b/source/adt/include/adt/adt.h index 7283a5c08..e957f0fc9 100644 --- a/source/adt/include/adt/adt.h +++ b/source/adt/include/adt/adt.h @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/include/adt/adt_bucket.h b/source/adt/include/adt/adt_bucket.h index 7053b2157..52a536aa1 100644 --- a/source/adt/include/adt/adt_bucket.h +++ b/source/adt/include/adt/adt_bucket.h @@ -1,6 +1,6 @@ /* * Abstract Data Type Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A abstract data type library providing generic containers. * diff --git a/source/adt/include/adt/adt_comparable.h b/source/adt/include/adt/adt_comparable.h index 0ef2d082b..d6ede6627 100644 --- a/source/adt/include/adt/adt_comparable.h +++ b/source/adt/include/adt/adt_comparable.h @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/include/adt/adt_hash.h b/source/adt/include/adt/adt_hash.h index b275c9895..d2eefc611 100644 --- a/source/adt/include/adt/adt_hash.h +++ b/source/adt/include/adt/adt_hash.h @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/include/adt/adt_map.h b/source/adt/include/adt/adt_map.h index ef1b45ebc..351ce57fd 100644 --- a/source/adt/include/adt/adt_map.h +++ b/source/adt/include/adt/adt_map.h @@ -1,6 +1,6 @@ /* * Abstract Data Type Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A abstract data type library providing generic containers. * diff --git a/source/adt/include/adt/adt_set.h b/source/adt/include/adt/adt_set.h index 81140723b..a69457d69 100644 --- a/source/adt/include/adt/adt_set.h +++ b/source/adt/include/adt/adt_set.h @@ -1,6 +1,6 @@ /* * Abstract Data Type Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A abstract data type library providing generic containers. * diff --git a/source/adt/include/adt/adt_string.h b/source/adt/include/adt/adt_string.h index ebb634422..3ef21e06b 100644 --- a/source/adt/include/adt/adt_string.h +++ b/source/adt/include/adt/adt_string.h @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/include/adt/adt_trie.h b/source/adt/include/adt/adt_trie.h index a867f7b08..f6eec21a9 100644 --- a/source/adt/include/adt/adt_trie.h +++ b/source/adt/include/adt/adt_trie.h @@ -1,6 +1,6 @@ /* * Abstract Data Type Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A abstract data type library providing generic containers. * diff --git a/source/adt/include/adt/adt_vector.h b/source/adt/include/adt/adt_vector.h index 3399b1f60..7cb7404b4 100644 --- a/source/adt/include/adt/adt_vector.h +++ b/source/adt/include/adt/adt_vector.h @@ -1,6 +1,6 @@ /* * Abstract Data Type Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A abstract data type library providing generic containers. * diff --git a/source/adt/source/adt.c b/source/adt/source/adt.c index 376c9914d..227fbb9c9 100644 --- a/source/adt/source/adt.c +++ b/source/adt/source/adt.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ const char *adt_print_info(void) { static const char adt_info[] = "Abstract Data Type Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef ADT_STATIC_DEFINE "Compiled as static library type" diff --git a/source/adt/source/adt_bucket.c b/source/adt/source/adt_bucket.c index c24d193bf..fa039301d 100644 --- a/source/adt/source/adt_bucket.c +++ b/source/adt/source/adt_bucket.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/source/adt_comparable.c b/source/adt/source/adt_comparable.c index 38b6257a9..0b7133621 100644 --- a/source/adt/source/adt_comparable.c +++ b/source/adt/source/adt_comparable.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/source/adt_hash.c b/source/adt/source/adt_hash.c index 69649ac9b..766c68c47 100644 --- a/source/adt/source/adt_hash.c +++ b/source/adt/source/adt_hash.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/source/adt_map.c b/source/adt/source/adt_map.c index 5e4fd572e..75d5bcdab 100644 --- a/source/adt/source/adt_map.c +++ b/source/adt/source/adt_map.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/source/adt_set.c b/source/adt/source/adt_set.c index 2014e56c0..a25d6d8a0 100644 --- a/source/adt/source/adt_set.c +++ b/source/adt/source/adt_set.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/source/adt_trie.c b/source/adt/source/adt_trie.c index a3790ef3c..71065b6ea 100644 --- a/source/adt/source/adt_trie.c +++ b/source/adt/source/adt_trie.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/adt/source/adt_vector.c b/source/adt/source/adt_vector.c index 462315afe..d4a725773 100644 --- a/source/adt/source/adt_vector.c +++ b/source/adt/source/adt_vector.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/benchmarks/log_bench/source/log_bench.cpp b/source/benchmarks/log_bench/source/log_bench.cpp index 3f4164328..9ca700767 100644 --- a/source/benchmarks/log_bench/source/log_bench.cpp +++ b/source/benchmarks/log_bench/source/log_bench.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/benchmarks/metacall_cs_call_bench/source/metacall_cs_call_bench.cpp b/source/benchmarks/metacall_cs_call_bench/source/metacall_cs_call_bench.cpp index 1061772b0..e16f199a8 100644 --- a/source/benchmarks/metacall_cs_call_bench/source/metacall_cs_call_bench.cpp +++ b/source/benchmarks/metacall_cs_call_bench/source/metacall_cs_call_bench.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/benchmarks/metacall_node_call_bench/source/metacall_node_call_bench.cpp b/source/benchmarks/metacall_node_call_bench/source/metacall_node_call_bench.cpp index 2dd5fd09c..f66efa2ab 100644 --- a/source/benchmarks/metacall_node_call_bench/source/metacall_node_call_bench.cpp +++ b/source/benchmarks/metacall_node_call_bench/source/metacall_node_call_bench.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/benchmarks/metacall_py_c_api_bench/source/metacall_py_c_api_bench.cpp b/source/benchmarks/metacall_py_c_api_bench/source/metacall_py_c_api_bench.cpp index 421ff1222..de8f43d8b 100644 --- a/source/benchmarks/metacall_py_c_api_bench/source/metacall_py_c_api_bench.cpp +++ b/source/benchmarks/metacall_py_c_api_bench/source/metacall_py_c_api_bench.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/benchmarks/metacall_py_call_bench/source/metacall_py_call_bench.cpp b/source/benchmarks/metacall_py_call_bench/source/metacall_py_call_bench.cpp index 4b5717e48..399ebe239 100644 --- a/source/benchmarks/metacall_py_call_bench/source/metacall_py_call_bench.cpp +++ b/source/benchmarks/metacall_py_call_bench/source/metacall_py_call_bench.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/benchmarks/metacall_py_init_bench/source/metacall_py_init_bench.cpp b/source/benchmarks/metacall_py_init_bench/source/metacall_py_init_bench.cpp index 7e69f1007..7021aad6b 100644 --- a/source/benchmarks/metacall_py_init_bench/source/metacall_py_init_bench.cpp +++ b/source/benchmarks/metacall_py_init_bench/source/metacall_py_init_bench.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/benchmarks/metacall_rb_call_bench/source/metacall_rb_call_bench.cpp b/source/benchmarks/metacall_rb_call_bench/source/metacall_rb_call_bench.cpp index 41b3c6b38..ddcfd2795 100644 --- a/source/benchmarks/metacall_rb_call_bench/source/metacall_rb_call_bench.cpp +++ b/source/benchmarks/metacall_rb_call_bench/source/metacall_rb_call_bench.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/cli/metacallcli/include/metacallcli/application.hpp b/source/cli/metacallcli/include/metacallcli/application.hpp index b66316214..f9426096c 100644 --- a/source/cli/metacallcli/include/metacallcli/application.hpp +++ b/source/cli/metacallcli/include/metacallcli/application.hpp @@ -1,6 +1,6 @@ /* * MetaCall Command Line Interface by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A command line interface example as metacall wrapper. * diff --git a/source/cli/metacallcli/include/metacallcli/parser.hpp b/source/cli/metacallcli/include/metacallcli/parser.hpp index 5fdba85f8..7cd7f1c25 100644 --- a/source/cli/metacallcli/include/metacallcli/parser.hpp +++ b/source/cli/metacallcli/include/metacallcli/parser.hpp @@ -1,6 +1,6 @@ /* * MetaCall Command Line Interface by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A command line interface example as metacall wrapper. * diff --git a/source/cli/metacallcli/include/metacallcli/tokenizer.hpp b/source/cli/metacallcli/include/metacallcli/tokenizer.hpp index 71f6d2be6..944f0f8a4 100644 --- a/source/cli/metacallcli/include/metacallcli/tokenizer.hpp +++ b/source/cli/metacallcli/include/metacallcli/tokenizer.hpp @@ -1,6 +1,6 @@ /* * MetaCall Command Line Interface by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A command line interface example as metacall wrapper. * diff --git a/source/cli/metacallcli/inline/metacallcli/parser.inl b/source/cli/metacallcli/inline/metacallcli/parser.inl index 7df978741..9fb5f9a17 100644 --- a/source/cli/metacallcli/inline/metacallcli/parser.inl +++ b/source/cli/metacallcli/inline/metacallcli/parser.inl @@ -1,6 +1,6 @@ /* * MetaCall Command Line Interface by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A command line interface example as metacall wrapper. * diff --git a/source/cli/metacallcli/source/application.cpp b/source/cli/metacallcli/source/application.cpp index 33a1b5f87..0bf9f9e67 100644 --- a/source/cli/metacallcli/source/application.cpp +++ b/source/cli/metacallcli/source/application.cpp @@ -1,6 +1,6 @@ /* * MetaCall Command Line Interface by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A command line interface example as metacall wrapper. * @@ -51,7 +51,7 @@ using namespace metacallcli; bool command_cb_help(application & /*app*/, tokenizer & /*t*/) { std::cout << "MetaCall Command Line Interface by Parra Studios" << std::endl; - std::cout << "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia " << std::endl; + std::cout << "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia " << std::endl; std::cout << std::endl << "A command line interface for MetaCall Core" << std::endl; diff --git a/source/cli/metacallcli/source/main.cpp b/source/cli/metacallcli/source/main.cpp index c2846bc6d..1821d04b5 100644 --- a/source/cli/metacallcli/source/main.cpp +++ b/source/cli/metacallcli/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Command Line Interface by Parra Studios * A command line interface example as metacall wrapper. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/cli/metacallcli/source/parser.cpp b/source/cli/metacallcli/source/parser.cpp index bb940d8af..6c8346b08 100644 --- a/source/cli/metacallcli/source/parser.cpp +++ b/source/cli/metacallcli/source/parser.cpp @@ -1,6 +1,6 @@ /* * MetaCall Command Line Interface by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A command line interface example as metacall wrapper. * diff --git a/source/cli/metacallcli/source/tokenizer.cpp b/source/cli/metacallcli/source/tokenizer.cpp index 4e95950e9..3caa49965 100644 --- a/source/cli/metacallcli/source/tokenizer.cpp +++ b/source/cli/metacallcli/source/tokenizer.cpp @@ -1,6 +1,6 @@ /* * MetaCall Command Line Interface by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A command line interface example as metacall wrapper. * diff --git a/source/cli/plugins/cli_core_plugin/include/cli_core_plugin/cli_core_plugin.h b/source/cli/plugins/cli_core_plugin/include/cli_core_plugin/cli_core_plugin.h index 184fdda89..f1bd7a08d 100644 --- a/source/cli/plugins/cli_core_plugin/include/cli_core_plugin/cli_core_plugin.h +++ b/source/cli/plugins/cli_core_plugin/include/cli_core_plugin/cli_core_plugin.h @@ -2,7 +2,7 @@ * CLI Core Plugin by Parra Studios * A plugin implementing core functionality for MetaCall CLI. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/cli/plugins/cli_core_plugin/source/cli_core_plugin.cpp b/source/cli/plugins/cli_core_plugin/source/cli_core_plugin.cpp index e0c47a6cc..dd5f4a671 100644 --- a/source/cli/plugins/cli_core_plugin/source/cli_core_plugin.cpp +++ b/source/cli/plugins/cli_core_plugin/source/cli_core_plugin.cpp @@ -2,7 +2,7 @@ * CLI Core Plugin by Parra Studios * A plugin implementing core functionality for MetaCall CLI. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -50,7 +50,7 @@ std::cout << "MetaCall Command Line Interface by Parra Studios" << std::endl; \ std::cout << "A command line interface for MetaCall Core" << std::endl; \ std::cout << std::endl; \ - std::cout << "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia " << std::endl; \ + std::cout << "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia " << std::endl; \ } while (0) template diff --git a/source/configuration/include/configuration/configuration.h b/source/configuration/include/configuration/configuration.h index 70c7ae3a7..9182d8a09 100644 --- a/source/configuration/include/configuration/configuration.h +++ b/source/configuration/include/configuration/configuration.h @@ -1,6 +1,6 @@ /* * Configuration Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple configuration formats. * diff --git a/source/configuration/include/configuration/configuration_impl.h b/source/configuration/include/configuration/configuration_impl.h index 7b3c7832a..bac8d2e89 100644 --- a/source/configuration/include/configuration/configuration_impl.h +++ b/source/configuration/include/configuration/configuration_impl.h @@ -2,7 +2,7 @@ * Configuration Library by Parra Studios * A cross-platform library for managing multiple configuration formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/configuration/include/configuration/configuration_object.h b/source/configuration/include/configuration/configuration_object.h index d3f9c4908..d98e920dd 100644 --- a/source/configuration/include/configuration/configuration_object.h +++ b/source/configuration/include/configuration/configuration_object.h @@ -2,7 +2,7 @@ * Configuration Library by Parra Studios * A cross-platform library for managing multiple configuration formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/configuration/include/configuration/configuration_object_handle.h b/source/configuration/include/configuration/configuration_object_handle.h index e4b66f07d..73bfc7f04 100644 --- a/source/configuration/include/configuration/configuration_object_handle.h +++ b/source/configuration/include/configuration/configuration_object_handle.h @@ -2,7 +2,7 @@ * Configuration Library by Parra Studios * A cross-platform library for managing multiple configuration formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/configuration/include/configuration/configuration_singleton.h b/source/configuration/include/configuration/configuration_singleton.h index 0e46e328d..44b1e52d1 100644 --- a/source/configuration/include/configuration/configuration_singleton.h +++ b/source/configuration/include/configuration/configuration_singleton.h @@ -1,6 +1,6 @@ /* * Configuration Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple configuration formats. * diff --git a/source/configuration/source/configuration.c b/source/configuration/source/configuration.c index c96fd71ec..0d287e7b3 100644 --- a/source/configuration/source/configuration.c +++ b/source/configuration/source/configuration.c @@ -1,6 +1,6 @@ /* * Configuration Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple configuration formats. * @@ -254,7 +254,7 @@ const char *configuration_print_info(void) { static const char configuration_info[] = "Configuration Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef CONFIGURATION_STATIC_DEFINE "Compiled as static library type" diff --git a/source/configuration/source/configuration_impl.c b/source/configuration/source/configuration_impl.c index c61a3affc..137645119 100644 --- a/source/configuration/source/configuration_impl.c +++ b/source/configuration/source/configuration_impl.c @@ -1,6 +1,6 @@ /* * Configuration Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple configuration formats. * diff --git a/source/configuration/source/configuration_object.c b/source/configuration/source/configuration_object.c index 1cbff1e95..f7044c97b 100644 --- a/source/configuration/source/configuration_object.c +++ b/source/configuration/source/configuration_object.c @@ -1,6 +1,6 @@ /* * Configuration Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple configuration formats. * diff --git a/source/configuration/source/configuration_singleton.c b/source/configuration/source/configuration_singleton.c index ed70ba2da..5b3181267 100644 --- a/source/configuration/source/configuration_singleton.c +++ b/source/configuration/source/configuration_singleton.c @@ -1,6 +1,6 @@ /* * Configuration Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple configuration formats. * diff --git a/source/detour/include/detour/detour.h b/source/detour/include/detour/detour.h index d2bbd88d4..d061bf19b 100644 --- a/source/detour/include/detour/detour.h +++ b/source/detour/include/detour/detour.h @@ -1,6 +1,6 @@ /* * Detour Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library providing detours, function hooks and trampolines. * diff --git a/source/detour/include/detour/detour_handle.h b/source/detour/include/detour/detour_handle.h index f6872edce..7e9dde1b8 100644 --- a/source/detour/include/detour/detour_handle.h +++ b/source/detour/include/detour/detour_handle.h @@ -2,7 +2,7 @@ * Detour Library by Parra Studios * A cross-platform library providing detours, function hooks and trampolines. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/detour/include/detour/detour_interface.h b/source/detour/include/detour/detour_interface.h index a978b5953..425ba151d 100644 --- a/source/detour/include/detour/detour_interface.h +++ b/source/detour/include/detour/detour_interface.h @@ -2,7 +2,7 @@ * Detour Library by Parra Studios * A cross-platform library providing detours, function hooks and trampolines. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/detour/source/detour.c b/source/detour/source/detour.c index f91446625..3eeb57d6d 100644 --- a/source/detour/source/detour.c +++ b/source/detour/source/detour.c @@ -1,6 +1,6 @@ /* * Detour Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library providing detours, function hooks and trampolines. * @@ -164,7 +164,7 @@ const char *detour_print_info(void) { static const char detour_info[] = "Detour Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef DETOUR_STATIC_DEFINE "Compiled as static library type" diff --git a/source/detours/funchook_detour/include/funchook_detour/funchook_detour.h b/source/detours/funchook_detour/include/funchook_detour/funchook_detour.h index 8d04d5bc8..b1967f77d 100644 --- a/source/detours/funchook_detour/include/funchook_detour/funchook_detour.h +++ b/source/detours/funchook_detour/include/funchook_detour/funchook_detour.h @@ -2,7 +2,7 @@ * Detour Library by Parra Studios * A cross-platform library providing detours, function hooks and trampolines. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/detours/funchook_detour/include/funchook_detour/funchook_detour_impl.h b/source/detours/funchook_detour/include/funchook_detour/funchook_detour_impl.h index 86e4e0d73..33b68d9e1 100644 --- a/source/detours/funchook_detour/include/funchook_detour/funchook_detour_impl.h +++ b/source/detours/funchook_detour/include/funchook_detour/funchook_detour_impl.h @@ -2,7 +2,7 @@ * Detour Library by Parra Studios * A cross-platform library providing detours, function hooks and trampolines. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/detours/funchook_detour/source/funchook_detour.c b/source/detours/funchook_detour/source/funchook_detour.c index 9d028c8be..93b680165 100644 --- a/source/detours/funchook_detour/source/funchook_detour.c +++ b/source/detours/funchook_detour/source/funchook_detour.c @@ -1,6 +1,6 @@ /* * Detour Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library providing detours, function hooks and trampolines. * @@ -31,7 +31,7 @@ const char *funchook_detour_print_info(void) { static const char funchook_detour_info[] = "FuncHook Detour Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef FUNCHOOK_DETOUR_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/detours/funchook_detour/source/funchook_detour_impl.c b/source/detours/funchook_detour/source/funchook_detour_impl.c index a896db5dd..3eccf9545 100644 --- a/source/detours/funchook_detour/source/funchook_detour_impl.c +++ b/source/detours/funchook_detour/source/funchook_detour_impl.c @@ -1,6 +1,6 @@ /* * Detour Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library providing detours, function hooks and trampolines. * diff --git a/source/dynlink/include/dynlink/dynlink.h b/source/dynlink/include/dynlink/dynlink.h index 6b4c92fcc..2b42705a6 100644 --- a/source/dynlink/include/dynlink/dynlink.h +++ b/source/dynlink/include/dynlink/dynlink.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_flags.h b/source/dynlink/include/dynlink/dynlink_flags.h index 3c94c4026..9b870abae 100644 --- a/source/dynlink/include/dynlink/dynlink_flags.h +++ b/source/dynlink/include/dynlink/dynlink_flags.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl.h b/source/dynlink/include/dynlink/dynlink_impl.h index e12038609..e41b7edb2 100644 --- a/source/dynlink/include/dynlink/dynlink_impl.h +++ b/source/dynlink/include/dynlink/dynlink_impl.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_beos.h b/source/dynlink/include/dynlink/dynlink_impl_beos.h index 4bcebcaa0..d1a5b7498 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_beos.h +++ b/source/dynlink/include/dynlink/dynlink_impl_beos.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_interface.h b/source/dynlink/include/dynlink/dynlink_impl_interface.h index 1f99ff90a..f1e0e741d 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_interface.h +++ b/source/dynlink/include/dynlink/dynlink_impl_interface.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_macos.h b/source/dynlink/include/dynlink/dynlink_impl_macos.h index 98e5c66a8..86d61d489 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_macos.h +++ b/source/dynlink/include/dynlink/dynlink_impl_macos.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_name.h b/source/dynlink/include/dynlink/dynlink_impl_name.h index 8c46da84f..18e17e631 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_name.h +++ b/source/dynlink/include/dynlink/dynlink_impl_name.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_symbol_beos.h b/source/dynlink/include/dynlink/dynlink_impl_symbol_beos.h index 33fcbac2b..6530fd895 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_symbol_beos.h +++ b/source/dynlink/include/dynlink/dynlink_impl_symbol_beos.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_symbol_macos.h b/source/dynlink/include/dynlink/dynlink_impl_symbol_macos.h index e06fa5f93..7d92286e6 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_symbol_macos.h +++ b/source/dynlink/include/dynlink/dynlink_impl_symbol_macos.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_symbol_unix.h b/source/dynlink/include/dynlink/dynlink_impl_symbol_unix.h index 7d4119eee..56a66a91b 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_symbol_unix.h +++ b/source/dynlink/include/dynlink/dynlink_impl_symbol_unix.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_symbol_win32.h b/source/dynlink/include/dynlink/dynlink_impl_symbol_win32.h index b1314824c..670ece371 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_symbol_win32.h +++ b/source/dynlink/include/dynlink/dynlink_impl_symbol_win32.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_type.h b/source/dynlink/include/dynlink/dynlink_impl_type.h index 6dcbfe1b3..4f005410a 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_type.h +++ b/source/dynlink/include/dynlink/dynlink_impl_type.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_unix.h b/source/dynlink/include/dynlink/dynlink_impl_unix.h index f2499b92b..2c55b8106 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_unix.h +++ b/source/dynlink/include/dynlink/dynlink_impl_unix.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_impl_win32.h b/source/dynlink/include/dynlink/dynlink_impl_win32.h index 5a01de445..39c7e0e71 100644 --- a/source/dynlink/include/dynlink/dynlink_impl_win32.h +++ b/source/dynlink/include/dynlink/dynlink_impl_win32.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_interface.h.in b/source/dynlink/include/dynlink/dynlink_interface.h.in index 83a4b7866..39fd62a00 100644 --- a/source/dynlink/include/dynlink/dynlink_interface.h.in +++ b/source/dynlink/include/dynlink/dynlink_interface.h.in @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_symbol.h b/source/dynlink/include/dynlink/dynlink_symbol.h index 1e76b420e..d0319663f 100644 --- a/source/dynlink/include/dynlink/dynlink_symbol.h +++ b/source/dynlink/include/dynlink/dynlink_symbol.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/include/dynlink/dynlink_type.h b/source/dynlink/include/dynlink/dynlink_type.h index 3696bce9a..2aa09bbf5 100644 --- a/source/dynlink/include/dynlink/dynlink_type.h +++ b/source/dynlink/include/dynlink/dynlink_type.h @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/source/dynlink.c b/source/dynlink/source/dynlink.c index e6b44d020..4ae3b801d 100644 --- a/source/dynlink/source/dynlink.c +++ b/source/dynlink/source/dynlink.c @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -172,7 +172,7 @@ const char *dynlink_print_info(void) { static const char dynlink_info[] = "Dynamic Link Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef DYNLINK_STATIC_DEFINE "Compiled as static library type" diff --git a/source/dynlink/source/dynlink_impl.c b/source/dynlink/source/dynlink_impl.c index f74b27cfe..6cc10e247 100644 --- a/source/dynlink/source/dynlink_impl.c +++ b/source/dynlink/source/dynlink_impl.c @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/source/dynlink_impl_beos.c b/source/dynlink/source/dynlink_impl_beos.c index 9170b9166..131d0ace3 100644 --- a/source/dynlink/source/dynlink_impl_beos.c +++ b/source/dynlink/source/dynlink_impl_beos.c @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/source/dynlink_impl_macos.c b/source/dynlink/source/dynlink_impl_macos.c index 9d6e4a338..5074ee1f0 100644 --- a/source/dynlink/source/dynlink_impl_macos.c +++ b/source/dynlink/source/dynlink_impl_macos.c @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/source/dynlink_impl_unix.c b/source/dynlink/source/dynlink_impl_unix.c index 40fb3b9a9..f36f682a4 100644 --- a/source/dynlink/source/dynlink_impl_unix.c +++ b/source/dynlink/source/dynlink_impl_unix.c @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/source/dynlink_impl_win32.c b/source/dynlink/source/dynlink_impl_win32.c index e8a9f5aae..943118cfa 100644 --- a/source/dynlink/source/dynlink_impl_win32.c +++ b/source/dynlink/source/dynlink_impl_win32.c @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/source/dynlink_interface.c.in b/source/dynlink/source/dynlink_interface.c.in index 7a70cda20..5f46e5552 100644 --- a/source/dynlink/source/dynlink_interface.c.in +++ b/source/dynlink/source/dynlink_interface.c.in @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/dynlink/source/dynlink_symbol.c b/source/dynlink/source/dynlink_symbol.c index e37a03758..35ac3861d 100644 --- a/source/dynlink/source/dynlink_symbol.c +++ b/source/dynlink/source/dynlink_symbol.c @@ -2,7 +2,7 @@ * Dynamic Link Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/environment/include/environment/environment.h b/source/environment/include/environment/environment.h index e35ad900c..fab2ee2be 100644 --- a/source/environment/include/environment/environment.h +++ b/source/environment/include/environment/environment.h @@ -2,7 +2,7 @@ * Environment Library by Parra Studios * A cross-platform library for supporting platform specific environment features. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/environment/include/environment/environment_variable.h b/source/environment/include/environment/environment_variable.h index 5795cad91..11332c09a 100644 --- a/source/environment/include/environment/environment_variable.h +++ b/source/environment/include/environment/environment_variable.h @@ -2,7 +2,7 @@ * Environment Library by Parra Studios * A cross-platform library for supporting platform specific environment features. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/environment/include/environment/environment_variable_path.h b/source/environment/include/environment/environment_variable_path.h index 402a2eeb0..abb0d3129 100644 --- a/source/environment/include/environment/environment_variable_path.h +++ b/source/environment/include/environment/environment_variable_path.h @@ -2,7 +2,7 @@ * Environment Library by Parra Studios * A cross-platform library for supporting platform specific environment features. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/environment/source/environment.c b/source/environment/source/environment.c index 6f0f3143d..ae95bac49 100644 --- a/source/environment/source/environment.c +++ b/source/environment/source/environment.c @@ -2,7 +2,7 @@ * Environment Library by Parra Studios * A cross-platform library for supporting platform specific environment features. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,7 +30,7 @@ const char *environment_print_info(void) { static const char environment_info[] = "Format Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef LOG_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/environment/source/environment_variable.c b/source/environment/source/environment_variable.c index 9bb83ca4e..d608cee43 100644 --- a/source/environment/source/environment_variable.c +++ b/source/environment/source/environment_variable.c @@ -2,7 +2,7 @@ * Environment Library by Parra Studios * A cross-platform library for supporting platform specific environment features. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/environment/source/environment_variable_path.c b/source/environment/source/environment_variable_path.c index 351db6994..8bfd3d50c 100644 --- a/source/environment/source/environment_variable_path.c +++ b/source/environment/source/environment_variable_path.c @@ -2,7 +2,7 @@ * Environment Library by Parra Studios * A cross-platform library for supporting platform specific environment features. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/examples/metacalllog/main.cpp b/source/examples/metacalllog/main.cpp index fb4d5bc61..e7b47deea 100644 --- a/source/examples/metacalllog/main.cpp +++ b/source/examples/metacalllog/main.cpp @@ -2,7 +2,7 @@ * MetaCall Log by Parra Studios * Example of advanced logging in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/examples/metacallquine/main.cpp b/source/examples/metacallquine/main.cpp index 3d60b4d2b..a06008caf 100644 --- a/source/examples/metacallquine/main.cpp +++ b/source/examples/metacallquine/main.cpp @@ -2,7 +2,7 @@ * MetaCall Quine by Parra Studios * A quine relay proof of concept intercomunicating between multiple programming languages. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/examples/metacallweb/main.cpp b/source/examples/metacallweb/main.cpp index d4429fd56..f9f1cbb1e 100644 --- a/source/examples/metacallweb/main.cpp +++ b/source/examples/metacallweb/main.cpp @@ -2,7 +2,7 @@ * MetaCall Web Service by Parra Studios * A complete web service example using metacall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/extensions/plugin_extension/include/plugin_extension/plugin_extension.h b/source/extensions/plugin_extension/include/plugin_extension/plugin_extension.h index b71c420f8..89b0ed3b1 100644 --- a/source/extensions/plugin_extension/include/plugin_extension/plugin_extension.h +++ b/source/extensions/plugin_extension/include/plugin_extension/plugin_extension.h @@ -2,7 +2,7 @@ * Extension Library by Parra Studios * An extension for loading a folder of plugins based on metacall.json files. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/extensions/plugin_extension/source/plugin_extension.cpp b/source/extensions/plugin_extension/source/plugin_extension.cpp index 2334dddaf..942e9f367 100644 --- a/source/extensions/plugin_extension/source/plugin_extension.cpp +++ b/source/extensions/plugin_extension/source/plugin_extension.cpp @@ -2,7 +2,7 @@ * Extension Library by Parra Studios * An extension for loading a folder of plugins based on metacall.json files. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/filesystem/include/filesystem/filesystem.h b/source/filesystem/include/filesystem/filesystem.h index 9074f45fe..1bcc454f9 100644 --- a/source/filesystem/include/filesystem/filesystem.h +++ b/source/filesystem/include/filesystem/filesystem.h @@ -2,7 +2,7 @@ * File System Library by Parra Studios * A cross-platform library for managing file system, paths and files. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/filesystem/include/filesystem/filesystem_directory_descriptor.h b/source/filesystem/include/filesystem/filesystem_directory_descriptor.h index 53c238cc8..e4315e3f3 100644 --- a/source/filesystem/include/filesystem/filesystem_directory_descriptor.h +++ b/source/filesystem/include/filesystem/filesystem_directory_descriptor.h @@ -2,7 +2,7 @@ * File System Library by Parra Studios * A cross-platform library for managing file system, paths and files. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/filesystem/include/filesystem/filesystem_file_descriptor.h b/source/filesystem/include/filesystem/filesystem_file_descriptor.h index de6c6240f..65469a983 100644 --- a/source/filesystem/include/filesystem/filesystem_file_descriptor.h +++ b/source/filesystem/include/filesystem/filesystem_file_descriptor.h @@ -2,7 +2,7 @@ * File System Library by Parra Studios * A cross-platform library for managing file system, paths and files. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/filesystem/source/filesystem.c b/source/filesystem/source/filesystem.c index 4bd44347c..47d17ec11 100644 --- a/source/filesystem/source/filesystem.c +++ b/source/filesystem/source/filesystem.c @@ -1,6 +1,6 @@ /* * File System Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing file system, paths and files. * @@ -154,7 +154,7 @@ const char *filesystem_print_info(void) { static const char filesystem_info[] = "File System Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef FILESYSTEM_STATIC_DEFINE "Compiled as static library type" diff --git a/source/filesystem/source/filesystem_directory_descriptor.c b/source/filesystem/source/filesystem_directory_descriptor.c index 5feed1803..22d531fe1 100644 --- a/source/filesystem/source/filesystem_directory_descriptor.c +++ b/source/filesystem/source/filesystem_directory_descriptor.c @@ -2,7 +2,7 @@ * File System Library by Parra Studios * A cross-platform library for managing file system, paths and files. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/filesystem/source/filesystem_file_descriptor.c b/source/filesystem/source/filesystem_file_descriptor.c index 0bdf5bbae..04f92c9eb 100644 --- a/source/filesystem/source/filesystem_file_descriptor.c +++ b/source/filesystem/source/filesystem_file_descriptor.c @@ -2,7 +2,7 @@ * File System Library by Parra Studios * A cross-platform library for managing file system, paths and files. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/format/include/format/format.h b/source/format/include/format/format.h index 8260eec19..239a1c74d 100644 --- a/source/format/include/format/format.h +++ b/source/format/include/format/format.h @@ -2,7 +2,7 @@ * Format Library by Parra Studios * A cross-platform library for supporting formatted input / output. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/format/include/format/format_print.h b/source/format/include/format/format_print.h index 5bc3ec7e1..0ad41f5a6 100644 --- a/source/format/include/format/format_print.h +++ b/source/format/include/format/format_print.h @@ -2,7 +2,7 @@ * Format Library by Parra Studios * A cross-platform library for supporting formatted input / output. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/format/include/format/format_specifier.h b/source/format/include/format/format_specifier.h index 2d51d9c3c..ff9344e57 100644 --- a/source/format/include/format/format_specifier.h +++ b/source/format/include/format/format_specifier.h @@ -2,7 +2,7 @@ * Format Library by Parra Studios * A cross-platform library for supporting formatted input / output. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/format/source/format.c b/source/format/source/format.c index bbc4a05a2..ef5deb66f 100644 --- a/source/format/source/format.c +++ b/source/format/source/format.c @@ -2,7 +2,7 @@ * Format Library by Parra Studios * A cross-platform library for supporting formatted input / output. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,7 +30,7 @@ const char *format_print_info(void) { static const char format_info[] = "Format Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef FORMAT_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/format/source/format_print.c b/source/format/source/format_print.c index df31dabbf..fcc171be3 100644 --- a/source/format/source/format_print.c +++ b/source/format/source/format_print.c @@ -2,7 +2,7 @@ * Format Library by Parra Studios * A cross-platform library for supporting formatted input / output. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/include/loader/loader.h b/source/loader/include/loader/loader.h index a2d8ed1a1..69c20cde8 100644 --- a/source/loader/include/loader/loader.h +++ b/source/loader/include/loader/loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/include/loader/loader_handle.h b/source/loader/include/loader/loader_handle.h index c9d6b855f..68fc94ae7 100644 --- a/source/loader/include/loader/loader_handle.h +++ b/source/loader/include/loader/loader_handle.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/include/loader/loader_host.h b/source/loader/include/loader/loader_host.h index bb46cec2a..ce41c3c3d 100644 --- a/source/loader/include/loader/loader_host.h +++ b/source/loader/include/loader/loader_host.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/include/loader/loader_impl.h b/source/loader/include/loader/loader_impl.h index 92b7547d1..5160171e7 100644 --- a/source/loader/include/loader/loader_impl.h +++ b/source/loader/include/loader/loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/include/loader/loader_impl_data.h b/source/loader/include/loader/loader_impl_data.h index 9b6d11208..814888676 100644 --- a/source/loader/include/loader/loader_impl_data.h +++ b/source/loader/include/loader/loader_impl_data.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/include/loader/loader_impl_interface.h b/source/loader/include/loader/loader_impl_interface.h index 4733d1de3..7033b2d5c 100644 --- a/source/loader/include/loader/loader_impl_interface.h +++ b/source/loader/include/loader/loader_impl_interface.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/include/loader/loader_manager_impl.h b/source/loader/include/loader/loader_manager_impl.h index 0483bdc15..4e1253c12 100644 --- a/source/loader/include/loader/loader_manager_impl.h +++ b/source/loader/include/loader/loader_manager_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/include/loader/loader_naming.h b/source/loader/include/loader/loader_naming.h index a8c48ec80..e49b52807 100644 --- a/source/loader/include/loader/loader_naming.h +++ b/source/loader/include/loader/loader_naming.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/source/loader.c b/source/loader/source/loader.c index 5cf37939c..549ce728b 100644 --- a/source/loader/source/loader.c +++ b/source/loader/source/loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -777,7 +777,7 @@ const char *loader_print_info(void) { static const char loader_info[] = "Loader Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loader/source/loader_host.c b/source/loader/source/loader_host.c index 2806a16b9..28f9ebf72 100644 --- a/source/loader/source/loader_host.c +++ b/source/loader/source/loader_host.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/source/loader_impl.c b/source/loader/source/loader_impl.c index bb99f66cc..f63fe9e23 100644 --- a/source/loader/source/loader_impl.c +++ b/source/loader/source/loader_impl.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loader/source/loader_manager_impl.c b/source/loader/source/loader_manager_impl.c index 4b3c8a32b..b22fa1527 100644 --- a/source/loader/source/loader_manager_impl.c +++ b/source/loader/source/loader_manager_impl.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/c_loader/include/c_loader/c_loader.h b/source/loaders/c_loader/include/c_loader/c_loader.h index 9321db1b4..0e083cb01 100644 --- a/source/loaders/c_loader/include/c_loader/c_loader.h +++ b/source/loaders/c_loader/include/c_loader/c_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading c code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/c_loader/include/c_loader/c_loader_impl.h b/source/loaders/c_loader/include/c_loader/c_loader_impl.h index cc95a8b6e..fa9b9fafa 100644 --- a/source/loaders/c_loader/include/c_loader/c_loader_impl.h +++ b/source/loaders/c_loader/include/c_loader/c_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading c code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/c_loader/source/c_loader.c b/source/loaders/c_loader/source/c_loader.c index f00f0acd4..42ace7dc0 100644 --- a/source/loaders/c_loader/source/c_loader.c +++ b/source/loaders/c_loader/source/c_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading c code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *c_loader_print_info(void) { static const char c_loader_info[] = "C Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef C_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/c_loader/source/c_loader_impl.cpp b/source/loaders/c_loader/source/c_loader_impl.cpp index 4a2779486..f9a7b1775 100644 --- a/source/loaders/c_loader/source/c_loader_impl.cpp +++ b/source/loaders/c_loader/source/c_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading c code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cob_loader/include/cob_loader/cob_loader.h b/source/loaders/cob_loader/include/cob_loader/cob_loader.h index 8817a0106..92c6412aa 100644 --- a/source/loaders/cob_loader/include/cob_loader/cob_loader.h +++ b/source/loaders/cob_loader/include/cob_loader/cob_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading cobol code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cob_loader/include/cob_loader/cob_loader_impl.h b/source/loaders/cob_loader/include/cob_loader/cob_loader_impl.h index e69b31e6c..71a50c949 100644 --- a/source/loaders/cob_loader/include/cob_loader/cob_loader_impl.h +++ b/source/loaders/cob_loader/include/cob_loader/cob_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading cobol code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cob_loader/source/cob_loader.c b/source/loaders/cob_loader/source/cob_loader.c index a26d4f5d3..450fc82a0 100644 --- a/source/loaders/cob_loader/source/cob_loader.c +++ b/source/loaders/cob_loader/source/cob_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading cobol code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *cob_loader_print_info(void) { static const char cob_loader_info[] = "Cobol Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef COB_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/cob_loader/source/cob_loader_impl.cpp b/source/loaders/cob_loader/source/cob_loader_impl.cpp index dc0d889f0..6fff1d471 100644 --- a/source/loaders/cob_loader/source/cob_loader_impl.cpp +++ b/source/loaders/cob_loader/source/cob_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading cobol code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cr_loader/crystal/cr_loader_impl.cr b/source/loaders/cr_loader/crystal/cr_loader_impl.cr index 581cba7fa..8f1274f98 100644 --- a/source/loaders/cr_loader/crystal/cr_loader_impl.cr +++ b/source/loaders/cr_loader/crystal/cr_loader_impl.cr @@ -2,7 +2,7 @@ # Loader Library by Parra Studios # A plugin for loading crystal code at run-time into a process. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/loaders/cr_loader/crystal/main.cr b/source/loaders/cr_loader/crystal/main.cr index bc9bb8c01..3068b919b 100644 --- a/source/loaders/cr_loader/crystal/main.cr +++ b/source/loaders/cr_loader/crystal/main.cr @@ -2,7 +2,7 @@ # Loader Library by Parra Studios # A plugin for loading crystal code at run-time into a process. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/loaders/cr_loader/crystal/metacall.cr b/source/loaders/cr_loader/crystal/metacall.cr index 2c940e654..a6b306d71 100644 --- a/source/loaders/cr_loader/crystal/metacall.cr +++ b/source/loaders/cr_loader/crystal/metacall.cr @@ -2,7 +2,7 @@ # Loader Library by Parra Studios # A plugin for loading crystal code at run-time into a process. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/loaders/cr_loader/include/cr_loader/cr_loader.h b/source/loaders/cr_loader/include/cr_loader/cr_loader.h index ee9d2fc8b..628f387e6 100644 --- a/source/loaders/cr_loader/include/cr_loader/cr_loader.h +++ b/source/loaders/cr_loader/include/cr_loader/cr_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading crystal code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cr_loader/include/cr_loader/cr_loader_impl.h b/source/loaders/cr_loader/include/cr_loader/cr_loader_impl.h index a0ce4b8cd..7abbf29ab 100644 --- a/source/loaders/cr_loader/include/cr_loader/cr_loader_impl.h +++ b/source/loaders/cr_loader/include/cr_loader/cr_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading crystal code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cr_loader/include/cr_loader/cr_loader_impl_main.h b/source/loaders/cr_loader/include/cr_loader/cr_loader_impl_main.h index 4736f51b2..c4142210e 100644 --- a/source/loaders/cr_loader/include/cr_loader/cr_loader_impl_main.h +++ b/source/loaders/cr_loader/include/cr_loader/cr_loader_impl_main.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading crystal code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cr_loader/source/cr_loader.c b/source/loaders/cr_loader/source/cr_loader.c index b71c45a28..8788d6a7a 100644 --- a/source/loaders/cr_loader/source/cr_loader.c +++ b/source/loaders/cr_loader/source/cr_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading crystal code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *cr_loader_print_info(void) { static const char cr_loader_info[] = "Crystal Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef CR_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/cs_loader/include/cs_loader/defs.h b/source/loaders/cs_loader/include/cs_loader/defs.h index 4f75062f7..ba5502800 100644 --- a/source/loaders/cs_loader/include/cs_loader/defs.h +++ b/source/loaders/cs_loader/include/cs_loader/defs.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/include/cs_loader/host_environment.h b/source/loaders/cs_loader/include/cs_loader/host_environment.h index 7e184efc0..27f57baa3 100644 --- a/source/loaders/cs_loader/include/cs_loader/host_environment.h +++ b/source/loaders/cs_loader/include/cs_loader/host_environment.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/include/cs_loader/netcore.h b/source/loaders/cs_loader/include/cs_loader/netcore.h index 32b2a223a..a61d3a2e0 100644 --- a/source/loaders/cs_loader/include/cs_loader/netcore.h +++ b/source/loaders/cs_loader/include/cs_loader/netcore.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/include/cs_loader/netcore_linux.h b/source/loaders/cs_loader/include/cs_loader/netcore_linux.h index d9202aa04..803d656d8 100644 --- a/source/loaders/cs_loader/include/cs_loader/netcore_linux.h +++ b/source/loaders/cs_loader/include/cs_loader/netcore_linux.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/include/cs_loader/netcore_win.h b/source/loaders/cs_loader/include/cs_loader/netcore_win.h index 03aed1118..ae9ee3f4c 100644 --- a/source/loaders/cs_loader/include/cs_loader/netcore_win.h +++ b/source/loaders/cs_loader/include/cs_loader/netcore_win.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/include/cs_loader/simple_netcore.h b/source/loaders/cs_loader/include/cs_loader/simple_netcore.h index d6ce12b2e..557d83df2 100644 --- a/source/loaders/cs_loader/include/cs_loader/simple_netcore.h +++ b/source/loaders/cs_loader/include/cs_loader/simple_netcore.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/include/cs_loader/string_buffer.h b/source/loaders/cs_loader/include/cs_loader/string_buffer.h index 303fd16c2..8b0b387e8 100644 --- a/source/loaders/cs_loader/include/cs_loader/string_buffer.h +++ b/source/loaders/cs_loader/include/cs_loader/string_buffer.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/include/cs_loader/utils.hpp b/source/loaders/cs_loader/include/cs_loader/utils.hpp index e04abea4e..60311047e 100644 --- a/source/loaders/cs_loader/include/cs_loader/utils.hpp +++ b/source/loaders/cs_loader/include/cs_loader/utils.hpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/source/cs_loader.c b/source/loaders/cs_loader/source/cs_loader.c index 8e0f53ad2..f13e90e8d 100644 --- a/source/loaders/cs_loader/source/cs_loader.c +++ b/source/loaders/cs_loader/source/cs_loader.c @@ -34,7 +34,7 @@ const char *cs_loader_print_info(void) { static const char cs_loader_info[] = "Net Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef CS_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/cs_loader/source/cs_loader_impl.c b/source/loaders/cs_loader/source/cs_loader_impl.c index 921999ade..e33bb466b 100644 --- a/source/loaders/cs_loader/source/cs_loader_impl.c +++ b/source/loaders/cs_loader/source/cs_loader_impl.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/source/host_environment.cpp b/source/loaders/cs_loader/source/host_environment.cpp index 734a307bd..ba6e51d0e 100644 --- a/source/loaders/cs_loader/source/host_environment.cpp +++ b/source/loaders/cs_loader/source/host_environment.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/source/netcore.cpp b/source/loaders/cs_loader/source/netcore.cpp index c9f8620fa..831853825 100644 --- a/source/loaders/cs_loader/source/netcore.cpp +++ b/source/loaders/cs_loader/source/netcore.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/source/netcore_linux.cpp b/source/loaders/cs_loader/source/netcore_linux.cpp index 10cc8082e..68e6f0fdc 100644 --- a/source/loaders/cs_loader/source/netcore_linux.cpp +++ b/source/loaders/cs_loader/source/netcore_linux.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/source/simple_netcore.cpp b/source/loaders/cs_loader/source/simple_netcore.cpp index ac38ce7db..852b0d804 100644 --- a/source/loaders/cs_loader/source/simple_netcore.cpp +++ b/source/loaders/cs_loader/source/simple_netcore.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/cs_loader/source/string_buffer.cpp b/source/loaders/cs_loader/source/string_buffer.cpp index a29c8d1f6..e482f8b4d 100644 --- a/source/loaders/cs_loader/source/string_buffer.cpp +++ b/source/loaders/cs_loader/source/string_buffer.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading net code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/dart_loader/include/dart_loader/dart_loader.h b/source/loaders/dart_loader/include/dart_loader/dart_loader.h index 1fa21a477..8b6530480 100644 --- a/source/loaders/dart_loader/include/dart_loader/dart_loader.h +++ b/source/loaders/dart_loader/include/dart_loader/dart_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading dart code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/dart_loader/include/dart_loader/dart_loader_impl.h b/source/loaders/dart_loader/include/dart_loader/dart_loader_impl.h index 9b258d0f1..7e19d115b 100644 --- a/source/loaders/dart_loader/include/dart_loader/dart_loader_impl.h +++ b/source/loaders/dart_loader/include/dart_loader/dart_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading dart code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/dart_loader/source/dart_loader.c b/source/loaders/dart_loader/source/dart_loader.c index fa86a080a..df693fc41 100644 --- a/source/loaders/dart_loader/source/dart_loader.c +++ b/source/loaders/dart_loader/source/dart_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading dart code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *dart_loader_print_info(void) { static const char dart_loader_info[] = "Dart Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef DART_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/dart_loader/source/dart_loader_impl.cc b/source/loaders/dart_loader/source/dart_loader_impl.cc index 34f3ea830..92dac094b 100644 --- a/source/loaders/dart_loader/source/dart_loader_impl.cc +++ b/source/loaders/dart_loader/source/dart_loader_impl.cc @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading dart code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/ext_loader/include/ext_loader/ext_loader.h b/source/loaders/ext_loader/include/ext_loader/ext_loader.h index b534cf765..580ab2ff7 100644 --- a/source/loaders/ext_loader/include/ext_loader/ext_loader.h +++ b/source/loaders/ext_loader/include/ext_loader/ext_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading extension code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/ext_loader/include/ext_loader/ext_loader_impl.h b/source/loaders/ext_loader/include/ext_loader/ext_loader_impl.h index 527c00ea1..7ba734567 100644 --- a/source/loaders/ext_loader/include/ext_loader/ext_loader_impl.h +++ b/source/loaders/ext_loader/include/ext_loader/ext_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading extension code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/ext_loader/source/ext_loader.c b/source/loaders/ext_loader/source/ext_loader.c index 27281262d..0f2fa35fa 100644 --- a/source/loaders/ext_loader/source/ext_loader.c +++ b/source/loaders/ext_loader/source/ext_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading extension code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *ext_loader_print_info(void) { static const char ext_loader_info[] = "Extension Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef FILE_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/ext_loader/source/ext_loader_impl.cpp b/source/loaders/ext_loader/source/ext_loader_impl.cpp index 5d863d834..befb2429b 100644 --- a/source/loaders/ext_loader/source/ext_loader_impl.cpp +++ b/source/loaders/ext_loader/source/ext_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading extension code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/file_loader/include/file_loader/file_loader.h b/source/loaders/file_loader/include/file_loader/file_loader.h index 83c78c27e..b596e1537 100644 --- a/source/loaders/file_loader/include/file_loader/file_loader.h +++ b/source/loaders/file_loader/include/file_loader/file_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading file code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/file_loader/include/file_loader/file_loader_impl.h b/source/loaders/file_loader/include/file_loader/file_loader_impl.h index e1ed54379..f54d81b45 100644 --- a/source/loaders/file_loader/include/file_loader/file_loader_impl.h +++ b/source/loaders/file_loader/include/file_loader/file_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading file code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/file_loader/source/file_loader.c b/source/loaders/file_loader/source/file_loader.c index 1c084d40a..ec13b8d4c 100644 --- a/source/loaders/file_loader/source/file_loader.c +++ b/source/loaders/file_loader/source/file_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading file code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *file_loader_print_info(void) { static const char file_loader_info[] = "File Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef FILE_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/file_loader/source/file_loader_impl.c b/source/loaders/file_loader/source/file_loader_impl.c index a3a73289b..c6596d2ff 100644 --- a/source/loaders/file_loader/source/file_loader_impl.c +++ b/source/loaders/file_loader/source/file_loader_impl.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading file code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/java_loader/include/java_loader/java_loader.h b/source/loaders/java_loader/include/java_loader/java_loader.h index 5669976d7..4db5d86c2 100644 --- a/source/loaders/java_loader/include/java_loader/java_loader.h +++ b/source/loaders/java_loader/include/java_loader/java_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading java code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/java_loader/include/java_loader/java_loader_impl.h b/source/loaders/java_loader/include/java_loader/java_loader_impl.h index 54b8283a7..2232b5641 100644 --- a/source/loaders/java_loader/include/java_loader/java_loader_impl.h +++ b/source/loaders/java_loader/include/java_loader/java_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading java code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/java_loader/source/java_loader.c b/source/loaders/java_loader/source/java_loader.c index 6997b3aca..9f802a875 100644 --- a/source/loaders/java_loader/source/java_loader.c +++ b/source/loaders/java_loader/source/java_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading java code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *java_loader_print_info(void) { static const char java_loader_info[] = "C Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef JAVA_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/java_loader/source/java_loader_impl.cpp b/source/loaders/java_loader/source/java_loader_impl.cpp index cdba7df37..0baa237f9 100644 --- a/source/loaders/java_loader/source/java_loader_impl.cpp +++ b/source/loaders/java_loader/source/java_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading java code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/jl_loader/bootstrap/lib/bootstrap.jl b/source/loaders/jl_loader/bootstrap/lib/bootstrap.jl index 9278d747c..dfefa917d 100644 --- a/source/loaders/jl_loader/bootstrap/lib/bootstrap.jl +++ b/source/loaders/jl_loader/bootstrap/lib/bootstrap.jl @@ -2,7 +2,7 @@ # Loader Library by Parra Studios # A plugin for loading Julia code at run-time into a process. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/loaders/jl_loader/include/jl_loader/jl_loader.h b/source/loaders/jl_loader/include/jl_loader/jl_loader.h index 31c7390c4..574e09504 100644 --- a/source/loaders/jl_loader/include/jl_loader/jl_loader.h +++ b/source/loaders/jl_loader/include/jl_loader/jl_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading Julia code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/jl_loader/include/jl_loader/jl_loader_impl.h b/source/loaders/jl_loader/include/jl_loader/jl_loader_impl.h index 54b92b07e..6abcd5ab0 100644 --- a/source/loaders/jl_loader/include/jl_loader/jl_loader_impl.h +++ b/source/loaders/jl_loader/include/jl_loader/jl_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading Julia code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/jl_loader/source/jl_loader.c b/source/loaders/jl_loader/source/jl_loader.c index b0c13b62e..681987384 100644 --- a/source/loaders/jl_loader/source/jl_loader.c +++ b/source/loaders/jl_loader/source/jl_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading Julia code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *jl_loader_print_info(void) { static const char jl_loader_info[] = "Julia Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef JL_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/jl_loader/source/jl_loader_impl.cpp b/source/loaders/jl_loader/source/jl_loader_impl.cpp index bbd241845..9c9620e89 100644 --- a/source/loaders/jl_loader/source/jl_loader_impl.cpp +++ b/source/loaders/jl_loader/source/jl_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading Julia code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/js_loader/include/js_loader/js_loader.h b/source/loaders/js_loader/include/js_loader/js_loader.h index f999ed05f..7af1acf54 100644 --- a/source/loaders/js_loader/include/js_loader/js_loader.h +++ b/source/loaders/js_loader/include/js_loader/js_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/js_loader/include/js_loader/js_loader_impl.h b/source/loaders/js_loader/include/js_loader/js_loader_impl.h index 2c45d562e..78926f39e 100644 --- a/source/loaders/js_loader/include/js_loader/js_loader_impl.h +++ b/source/loaders/js_loader/include/js_loader/js_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/js_loader/include/js_loader/js_loader_impl_guard.hpp b/source/loaders/js_loader/include/js_loader/js_loader_impl_guard.hpp index 75e28ad1d..5105ba6ba 100644 --- a/source/loaders/js_loader/include/js_loader/js_loader_impl_guard.hpp +++ b/source/loaders/js_loader/include/js_loader/js_loader_impl_guard.hpp @@ -3,7 +3,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/js_loader/source/js_loader.c b/source/loaders/js_loader/source/js_loader.c index 13efe2308..eaf44404d 100644 --- a/source/loaders/js_loader/source/js_loader.c +++ b/source/loaders/js_loader/source/js_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *js_loader_print_info(void) { static const char js_loader_info[] = "Javascript Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef JS_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/js_loader/source/js_loader_impl.cpp b/source/loaders/js_loader/source/js_loader_impl.cpp index 325f09a9f..845a4f5a0 100644 --- a/source/loaders/js_loader/source/js_loader_impl.cpp +++ b/source/loaders/js_loader/source/js_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/js_loader/source/js_loader_impl_guard.cpp b/source/loaders/js_loader/source/js_loader_impl_guard.cpp index 65b48fd9b..0d7c19976 100644 --- a/source/loaders/js_loader/source/js_loader_impl_guard.cpp +++ b/source/loaders/js_loader/source/js_loader_impl_guard.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/jsm_loader/include/jsm_loader/jsm_loader.h b/source/loaders/jsm_loader/include/jsm_loader/jsm_loader.h index 2d604cb1a..b3d633549 100644 --- a/source/loaders/jsm_loader/include/jsm_loader/jsm_loader.h +++ b/source/loaders/jsm_loader/include/jsm_loader/jsm_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/jsm_loader/include/jsm_loader/jsm_loader_impl.h b/source/loaders/jsm_loader/include/jsm_loader/jsm_loader_impl.h index 8bed00826..015e4830a 100644 --- a/source/loaders/jsm_loader/include/jsm_loader/jsm_loader_impl.h +++ b/source/loaders/jsm_loader/include/jsm_loader/jsm_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/jsm_loader/source/jsm_loader.c b/source/loaders/jsm_loader/source/jsm_loader.c index b2aecef4c..175269eff 100644 --- a/source/loaders/jsm_loader/source/jsm_loader.c +++ b/source/loaders/jsm_loader/source/jsm_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,7 +41,7 @@ const char *jsm_loader_print_info(void) { static const char jsm_loader_info[] = "Javascript Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef JSM_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/jsm_loader/source/jsm_loader_impl.cpp b/source/loaders/jsm_loader/source/jsm_loader_impl.cpp index d5085f9d3..591f352f9 100644 --- a/source/loaders/jsm_loader/source/jsm_loader_impl.cpp +++ b/source/loaders/jsm_loader/source/jsm_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading javascript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/llvm_loader/include/llvm_loader/llvm_loader.h b/source/loaders/llvm_loader/include/llvm_loader/llvm_loader.h index add77d388..db405edd8 100644 --- a/source/loaders/llvm_loader/include/llvm_loader/llvm_loader.h +++ b/source/loaders/llvm_loader/include/llvm_loader/llvm_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading LLVM code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/llvm_loader/include/llvm_loader/llvm_loader_impl.h b/source/loaders/llvm_loader/include/llvm_loader/llvm_loader_impl.h index a2fe48f02..d5949a9f1 100644 --- a/source/loaders/llvm_loader/include/llvm_loader/llvm_loader_impl.h +++ b/source/loaders/llvm_loader/include/llvm_loader/llvm_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading LLVM code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/llvm_loader/source/llvm_loader.c b/source/loaders/llvm_loader/source/llvm_loader.c index 4a14804b4..0ffb622c4 100644 --- a/source/loaders/llvm_loader/source/llvm_loader.c +++ b/source/loaders/llvm_loader/source/llvm_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading LLVM code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *llvm_loader_print_info(void) { static const char llvm_loader_info[] = "LLVM Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef llvm_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/llvm_loader/source/llvm_loader_impl.cpp b/source/loaders/llvm_loader/source/llvm_loader_impl.cpp index 1ff7e72aa..bad187313 100644 --- a/source/loaders/llvm_loader/source/llvm_loader_impl.cpp +++ b/source/loaders/llvm_loader/source/llvm_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading LLVM code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/loaders.h.in b/source/loaders/loaders.h.in index d84a98326..d5d9dec8e 100644 --- a/source/loaders/loaders.h.in +++ b/source/loaders/loaders.h.in @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A library for loading executable code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/lua_loader/include/lua_loader/lua_loader.h b/source/loaders/lua_loader/include/lua_loader/lua_loader.h index 1a2165469..f93ed5312 100644 --- a/source/loaders/lua_loader/include/lua_loader/lua_loader.h +++ b/source/loaders/lua_loader/include/lua_loader/lua_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading lua code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/lua_loader/include/lua_loader/lua_loader_impl.h b/source/loaders/lua_loader/include/lua_loader/lua_loader_impl.h index 0015b8a9f..8861c9ba1 100644 --- a/source/loaders/lua_loader/include/lua_loader/lua_loader_impl.h +++ b/source/loaders/lua_loader/include/lua_loader/lua_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading lua code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/lua_loader/source/lua_loader.c b/source/loaders/lua_loader/source/lua_loader.c index 640598fbf..fa56317ac 100644 --- a/source/loaders/lua_loader/source/lua_loader.c +++ b/source/loaders/lua_loader/source/lua_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading lua code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *lua_loader_print_info(void) { static const char lua_loader_info[] = "Lua Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef LUA_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/lua_loader/source/lua_loader_impl.c b/source/loaders/lua_loader/source/lua_loader_impl.c index 90c67b6db..63f8fdd66 100644 --- a/source/loaders/lua_loader/source/lua_loader_impl.c +++ b/source/loaders/lua_loader/source/lua_loader_impl.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading lua code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/include/mock_loader/mock_loader.h b/source/loaders/mock_loader/include/mock_loader/mock_loader.h index a971d7f05..f92e7d1dd 100644 --- a/source/loaders/mock_loader/include/mock_loader/mock_loader.h +++ b/source/loaders/mock_loader/include/mock_loader/mock_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/include/mock_loader/mock_loader_descriptor.h b/source/loaders/mock_loader/include/mock_loader/mock_loader_descriptor.h index 2ea9d0196..5be793472 100644 --- a/source/loaders/mock_loader/include/mock_loader/mock_loader_descriptor.h +++ b/source/loaders/mock_loader/include/mock_loader/mock_loader_descriptor.h @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A plugin for loading mock code at run-time into a process. * diff --git a/source/loaders/mock_loader/include/mock_loader/mock_loader_export.h b/source/loaders/mock_loader/include/mock_loader/mock_loader_export.h index 90bb7edf1..3c474f8b1 100644 --- a/source/loaders/mock_loader/include/mock_loader/mock_loader_export.h +++ b/source/loaders/mock_loader/include/mock_loader/mock_loader_export.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/include/mock_loader/mock_loader_function.h b/source/loaders/mock_loader/include/mock_loader/mock_loader_function.h index a769385d8..ee3c9e7bb 100644 --- a/source/loaders/mock_loader/include/mock_loader/mock_loader_function.h +++ b/source/loaders/mock_loader/include/mock_loader/mock_loader_function.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/include/mock_loader/mock_loader_function_interface.h b/source/loaders/mock_loader/include/mock_loader/mock_loader_function_interface.h index 5e4048594..ffcc0449a 100644 --- a/source/loaders/mock_loader/include/mock_loader/mock_loader_function_interface.h +++ b/source/loaders/mock_loader/include/mock_loader/mock_loader_function_interface.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/include/mock_loader/mock_loader_handle.h b/source/loaders/mock_loader/include/mock_loader/mock_loader_handle.h index 37f55cfe2..62322b452 100644 --- a/source/loaders/mock_loader/include/mock_loader/mock_loader_handle.h +++ b/source/loaders/mock_loader/include/mock_loader/mock_loader_handle.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/include/mock_loader/mock_loader_impl.h b/source/loaders/mock_loader/include/mock_loader/mock_loader_impl.h index 2f7271479..2d8992c73 100644 --- a/source/loaders/mock_loader/include/mock_loader/mock_loader_impl.h +++ b/source/loaders/mock_loader/include/mock_loader/mock_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/include/mock_loader/mock_loader_interface.h b/source/loaders/mock_loader/include/mock_loader/mock_loader_interface.h index 79cd85691..bb3dd7a47 100644 --- a/source/loaders/mock_loader/include/mock_loader/mock_loader_interface.h +++ b/source/loaders/mock_loader/include/mock_loader/mock_loader_interface.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/include/mock_loader/mock_loader_print.h b/source/loaders/mock_loader/include/mock_loader/mock_loader_print.h index 773c07a7d..09785d67b 100644 --- a/source/loaders/mock_loader/include/mock_loader/mock_loader_print.h +++ b/source/loaders/mock_loader/include/mock_loader/mock_loader_print.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/source/mock_loader.c b/source/loaders/mock_loader/source/mock_loader.c index 8ca067a7d..949ac2289 100644 --- a/source/loaders/mock_loader/source/mock_loader.c +++ b/source/loaders/mock_loader/source/mock_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *mock_loader_print_info(void) { static const char mock_loader_info[] = "Mock Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef MOCK_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/mock_loader/source/mock_loader_descriptor.c b/source/loaders/mock_loader/source/mock_loader_descriptor.c index e3f000540..74e8f76c2 100644 --- a/source/loaders/mock_loader/source/mock_loader_descriptor.c +++ b/source/loaders/mock_loader/source/mock_loader_descriptor.c @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A plugin for loading mock code at run-time into a process. * diff --git a/source/loaders/mock_loader/source/mock_loader_export.c b/source/loaders/mock_loader/source/mock_loader_export.c index 24ce40e6e..7623d3285 100644 --- a/source/loaders/mock_loader/source/mock_loader_export.c +++ b/source/loaders/mock_loader/source/mock_loader_export.c @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A plugin for loading mock code at run-time into a process. * diff --git a/source/loaders/mock_loader/source/mock_loader_function.c b/source/loaders/mock_loader/source/mock_loader_function.c index 16e38c452..7b2d8a64c 100644 --- a/source/loaders/mock_loader/source/mock_loader_function.c +++ b/source/loaders/mock_loader/source/mock_loader_function.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/source/mock_loader_function_interface.c b/source/loaders/mock_loader/source/mock_loader_function_interface.c index ccf2fb3ee..7310fa415 100644 --- a/source/loaders/mock_loader/source/mock_loader_function_interface.c +++ b/source/loaders/mock_loader/source/mock_loader_function_interface.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/source/mock_loader_handle.c b/source/loaders/mock_loader/source/mock_loader_handle.c index dae7c526d..816048396 100644 --- a/source/loaders/mock_loader/source/mock_loader_handle.c +++ b/source/loaders/mock_loader/source/mock_loader_handle.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/source/mock_loader_impl.c b/source/loaders/mock_loader/source/mock_loader_impl.c index 1f08c0194..e63c7a1f1 100644 --- a/source/loaders/mock_loader/source/mock_loader_impl.c +++ b/source/loaders/mock_loader/source/mock_loader_impl.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading mock code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/mock_loader/source/mock_loader_interface.c b/source/loaders/mock_loader/source/mock_loader_interface.c index 5bd5ce2b3..11368a61a 100644 --- a/source/loaders/mock_loader/source/mock_loader_interface.c +++ b/source/loaders/mock_loader/source/mock_loader_interface.c @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A plugin for loading mock code at run-time into a process. * diff --git a/source/loaders/mock_loader/source/mock_loader_print.c b/source/loaders/mock_loader/source/mock_loader_print.c index ed699cca9..c1a27cb27 100644 --- a/source/loaders/mock_loader/source/mock_loader_print.c +++ b/source/loaders/mock_loader/source/mock_loader_print.c @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A plugin for loading mock code at run-time into a process. * @@ -14,7 +14,7 @@ const char *mock_loader_print_info(void) { static const char mock_loader_info[] = "Mock Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef MOCK_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/node_loader/include/node_loader/node_loader.h b/source/loaders/node_loader/include/node_loader/node_loader.h index d9d300d89..866037639 100644 --- a/source/loaders/node_loader/include/node_loader/node_loader.h +++ b/source/loaders/node_loader/include/node_loader/node_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading nodejs code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/node_loader/include/node_loader/node_loader_bootstrap.h b/source/loaders/node_loader/include/node_loader/node_loader_bootstrap.h index 9c1817525..58e51d904 100644 --- a/source/loaders/node_loader/include/node_loader/node_loader_bootstrap.h +++ b/source/loaders/node_loader/include/node_loader/node_loader_bootstrap.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading nodejs code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/node_loader/include/node_loader/node_loader_impl.h b/source/loaders/node_loader/include/node_loader/node_loader_impl.h index b8b939c5e..26290cecf 100644 --- a/source/loaders/node_loader/include/node_loader/node_loader_impl.h +++ b/source/loaders/node_loader/include/node_loader/node_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading nodejs code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/node_loader/include/node_loader/node_loader_port.h b/source/loaders/node_loader/include/node_loader/node_loader_port.h index 0ce78dfa4..effd3f06a 100644 --- a/source/loaders/node_loader/include/node_loader/node_loader_port.h +++ b/source/loaders/node_loader/include/node_loader/node_loader_port.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading nodejs code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/node_loader/include/node_loader/node_loader_trampoline.h b/source/loaders/node_loader/include/node_loader/node_loader_trampoline.h index 47179ef53..228d6f5c6 100644 --- a/source/loaders/node_loader/include/node_loader/node_loader_trampoline.h +++ b/source/loaders/node_loader/include/node_loader/node_loader_trampoline.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading nodejs code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/node_loader/include/node_loader/node_loader_win32_delay_load.h b/source/loaders/node_loader/include/node_loader/node_loader_win32_delay_load.h index 7d8bb92dd..73fcb6f57 100644 --- a/source/loaders/node_loader/include/node_loader/node_loader_win32_delay_load.h +++ b/source/loaders/node_loader/include/node_loader/node_loader_win32_delay_load.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading nodejs code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/node_loader/source/node_loader.c b/source/loaders/node_loader/source/node_loader.c index c1038819b..e768a8f89 100644 --- a/source/loaders/node_loader/source/node_loader.c +++ b/source/loaders/node_loader/source/node_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading nodejs code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *node_loader_print_info(void) { static const char node_loader_info[] = "Javascript Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef JS_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/node_loader/source/node_loader_impl.cpp b/source/loaders/node_loader/source/node_loader_impl.cpp index 1b0660c20..e73f44676 100644 --- a/source/loaders/node_loader/source/node_loader_impl.cpp +++ b/source/loaders/node_loader/source/node_loader_impl.cpp @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A plugin for loading nodejs code at run-time into a process. * diff --git a/source/loaders/node_loader/source/node_loader_port.cpp b/source/loaders/node_loader/source/node_loader_port.cpp index 82cdc899e..c0b32d299 100644 --- a/source/loaders/node_loader/source/node_loader_port.cpp +++ b/source/loaders/node_loader/source/node_loader_port.cpp @@ -2,7 +2,7 @@ * MetaCall NodeJS Port by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/node_loader/source/node_loader_trampoline.cpp b/source/loaders/node_loader/source/node_loader_trampoline.cpp index 15380ef50..f31512616 100644 --- a/source/loaders/node_loader/source/node_loader_trampoline.cpp +++ b/source/loaders/node_loader/source/node_loader_trampoline.cpp @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A plugin for loading nodejs code at run-time into a process. * diff --git a/source/loaders/py_loader/include/py_loader/py_loader.h b/source/loaders/py_loader/include/py_loader/py_loader.h index 939fe934b..0e655cdb8 100644 --- a/source/loaders/py_loader/include/py_loader/py_loader.h +++ b/source/loaders/py_loader/include/py_loader/py_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/py_loader/include/py_loader/py_loader_impl.h b/source/loaders/py_loader/include/py_loader/py_loader_impl.h index d716f915b..7da3504a9 100644 --- a/source/loaders/py_loader/include/py_loader/py_loader_impl.h +++ b/source/loaders/py_loader/include/py_loader/py_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/py_loader/include/py_loader/py_loader_port.h b/source/loaders/py_loader/include/py_loader/py_loader_port.h index 9177e90dd..8e4e18eb2 100644 --- a/source/loaders/py_loader/include/py_loader/py_loader_port.h +++ b/source/loaders/py_loader/include/py_loader/py_loader_port.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/py_loader/source/py_loader.c b/source/loaders/py_loader/source/py_loader.c index 5ef7e27e3..f3bf421fb 100644 --- a/source/loaders/py_loader/source/py_loader.c +++ b/source/loaders/py_loader/source/py_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *py_loader_print_info(void) { static const char py_loader_info[] = "Python Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef PY_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/py_loader/source/py_loader_impl.c b/source/loaders/py_loader/source/py_loader_impl.c index 27ab224d1..8f88de6b9 100644 --- a/source/loaders/py_loader/source/py_loader_impl.c +++ b/source/loaders/py_loader/source/py_loader_impl.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/py_loader/source/py_loader_port.c b/source/loaders/py_loader/source/py_loader_port.c index 47fed4ed2..3cec97d2a 100644 --- a/source/loaders/py_loader/source/py_loader_port.c +++ b/source/loaders/py_loader/source/py_loader_port.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/rb_loader/include/rb_loader/rb_loader.h b/source/loaders/rb_loader/include/rb_loader/rb_loader.h index 3d3815d7e..49b53024c 100644 --- a/source/loaders/rb_loader/include/rb_loader/rb_loader.h +++ b/source/loaders/rb_loader/include/rb_loader/rb_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/rb_loader/include/rb_loader/rb_loader_impl.h b/source/loaders/rb_loader/include/rb_loader/rb_loader_impl.h index 28193840e..39b2744d0 100644 --- a/source/loaders/rb_loader/include/rb_loader/rb_loader_impl.h +++ b/source/loaders/rb_loader/include/rb_loader/rb_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/rb_loader/include/rb_loader/rb_loader_impl_parser.h b/source/loaders/rb_loader/include/rb_loader/rb_loader_impl_parser.h index 215e2fafd..77a232b2a 100644 --- a/source/loaders/rb_loader/include/rb_loader/rb_loader_impl_parser.h +++ b/source/loaders/rb_loader/include/rb_loader/rb_loader_impl_parser.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/rb_loader/source/rb_loader.c b/source/loaders/rb_loader/source/rb_loader.c index 8b2775546..7bea40663 100644 --- a/source/loaders/rb_loader/source/rb_loader.c +++ b/source/loaders/rb_loader/source/rb_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *rb_loader_print_info(void) { static const char rb_loader_info[] = "Ruby Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef RB_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/rb_loader/source/rb_loader_impl.c b/source/loaders/rb_loader/source/rb_loader_impl.c index 0bd8fb194..6cb99ae05 100644 --- a/source/loaders/rb_loader/source/rb_loader_impl.c +++ b/source/loaders/rb_loader/source/rb_loader_impl.c @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A plugin for loading ruby code at run-time into a process. * diff --git a/source/loaders/rb_loader/source/rb_loader_impl_parser.c b/source/loaders/rb_loader/source/rb_loader_impl_parser.c index 03035603c..dc8cd5dde 100644 --- a/source/loaders/rb_loader/source/rb_loader_impl_parser.c +++ b/source/loaders/rb_loader/source/rb_loader_impl_parser.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/rpc_loader/include/rpc_loader/rpc_loader.h b/source/loaders/rpc_loader/include/rpc_loader/rpc_loader.h index 1bbaad935..de574b4b8 100644 --- a/source/loaders/rpc_loader/include/rpc_loader/rpc_loader.h +++ b/source/loaders/rpc_loader/include/rpc_loader/rpc_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading rpc endpoints at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/rpc_loader/include/rpc_loader/rpc_loader_impl.h b/source/loaders/rpc_loader/include/rpc_loader/rpc_loader_impl.h index ab73c71c6..12d580e6a 100644 --- a/source/loaders/rpc_loader/include/rpc_loader/rpc_loader_impl.h +++ b/source/loaders/rpc_loader/include/rpc_loader/rpc_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading rpc endpoints at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/rpc_loader/source/rpc_loader.c b/source/loaders/rpc_loader/source/rpc_loader.c index 1d77e5f63..c5fb1cba6 100644 --- a/source/loaders/rpc_loader/source/rpc_loader.c +++ b/source/loaders/rpc_loader/source/rpc_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading rpc endpoints at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *rpc_loader_print_info(void) { static const char rpc_loader_info[] = "RPC Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef RPC_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/rpc_loader/source/rpc_loader_impl.cpp b/source/loaders/rpc_loader/source/rpc_loader_impl.cpp index e46de1df2..4ae44faf2 100644 --- a/source/loaders/rpc_loader/source/rpc_loader_impl.cpp +++ b/source/loaders/rpc_loader/source/rpc_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading rpc endpoints at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use thiz file except in compliance with the License. diff --git a/source/loaders/rs_loader/include/rs_loader/rs_loader.h b/source/loaders/rs_loader/include/rs_loader/rs_loader.h index b889f42d3..75f961a33 100644 --- a/source/loaders/rs_loader/include/rs_loader/rs_loader.h +++ b/source/loaders/rs_loader/include/rs_loader/rs_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading rust code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/rs_loader/include/rs_loader/rs_loader_impl.h b/source/loaders/rs_loader/include/rs_loader/rs_loader_impl.h index 65a51b804..1f34c3048 100644 --- a/source/loaders/rs_loader/include/rs_loader/rs_loader_impl.h +++ b/source/loaders/rs_loader/include/rs_loader/rs_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading rust code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/rs_loader/source/rs_loader.c b/source/loaders/rs_loader/source/rs_loader.c index b749d85f4..dc8317e36 100644 --- a/source/loaders/rs_loader/source/rs_loader.c +++ b/source/loaders/rs_loader/source/rs_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading rust code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -48,7 +48,7 @@ const char *rs_loader_print_info(void) { static const char rs_loader_info[] = "Rust Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef RS_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/ts_loader/include/ts_loader/ts_loader.h b/source/loaders/ts_loader/include/ts_loader/ts_loader.h index f06c666ee..812c4c249 100644 --- a/source/loaders/ts_loader/include/ts_loader/ts_loader.h +++ b/source/loaders/ts_loader/include/ts_loader/ts_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading TypeScript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/ts_loader/include/ts_loader/ts_loader_impl.h b/source/loaders/ts_loader/include/ts_loader/ts_loader_impl.h index 3312e5824..d96bb8235 100644 --- a/source/loaders/ts_loader/include/ts_loader/ts_loader_impl.h +++ b/source/loaders/ts_loader/include/ts_loader/ts_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading TypeScript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/ts_loader/source/ts_loader.c b/source/loaders/ts_loader/source/ts_loader.c index 7e446bae8..b93b632b3 100644 --- a/source/loaders/ts_loader/source/ts_loader.c +++ b/source/loaders/ts_loader/source/ts_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading TypeScript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *ts_loader_print_info(void) { static const char ts_loader_info[] = "TypeScript Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef TS_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/ts_loader/source/ts_loader_impl.cpp b/source/loaders/ts_loader/source/ts_loader_impl.cpp index 5a5e119da..10af5b588 100644 --- a/source/loaders/ts_loader/source/ts_loader_impl.cpp +++ b/source/loaders/ts_loader/source/ts_loader_impl.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading TypeScript code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/wasm_loader/include/wasm_loader/wasm_loader.h b/source/loaders/wasm_loader/include/wasm_loader/wasm_loader.h index 31c0d9944..b34e2a5d1 100644 --- a/source/loaders/wasm_loader/include/wasm_loader/wasm_loader.h +++ b/source/loaders/wasm_loader/include/wasm_loader/wasm_loader.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading WebAssembly code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_function.h b/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_function.h index 475245b96..a8a59fd64 100644 --- a/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_function.h +++ b/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_function.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading WebAssembly code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_handle.h b/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_handle.h index 612eb60a2..e775e0076 100644 --- a/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_handle.h +++ b/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_handle.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading WebAssembly code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_impl.h b/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_impl.h index 40ac87758..8750a5515 100644 --- a/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_impl.h +++ b/source/loaders/wasm_loader/include/wasm_loader/wasm_loader_impl.h @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading WebAssembly code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/loaders/wasm_loader/source/wasm_loader.c b/source/loaders/wasm_loader/source/wasm_loader.c index 00c14901c..f28af43b8 100644 --- a/source/loaders/wasm_loader/source/wasm_loader.c +++ b/source/loaders/wasm_loader/source/wasm_loader.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading WebAssembly code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ const char *wasm_loader_print_info(void) { static const char wasm_loader_info[] = "WebAssembly Loader Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef wasm_LOADER_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/loaders/wasm_loader/source/wasm_loader_impl.c b/source/loaders/wasm_loader/source/wasm_loader_impl.c index 9f03ab82d..3073bb4f1 100644 --- a/source/loaders/wasm_loader/source/wasm_loader_impl.c +++ b/source/loaders/wasm_loader/source/wasm_loader_impl.c @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading WebAssembly code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/include/log/log.h b/source/log/include/log/log.h index bd26bed8d..f39afdb64 100644 --- a/source/log/include/log/log.h +++ b/source/log/include/log/log.h @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/include/log/log_aspect.h b/source/log/include/log/log_aspect.h index 4b73ea743..9112d29d6 100644 --- a/source/log/include/log/log_aspect.h +++ b/source/log/include/log/log_aspect.h @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/include/log/log_aspect_format.h b/source/log/include/log/log_aspect_format.h index e064e562c..da4ef2ca2 100644 --- a/source/log/include/log/log_aspect_format.h +++ b/source/log/include/log/log_aspect_format.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_aspect_schedule.h b/source/log/include/log/log_aspect_schedule.h index 941998d68..96c04c7ba 100644 --- a/source/log/include/log/log_aspect_schedule.h +++ b/source/log/include/log/log_aspect_schedule.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_aspect_storage.h b/source/log/include/log/log_aspect_storage.h index 4cac46911..c7909bbe4 100644 --- a/source/log/include/log/log_aspect_storage.h +++ b/source/log/include/log/log_aspect_storage.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_aspect_stream.h b/source/log/include/log/log_aspect_stream.h index 83d343e08..e667ba6eb 100644 --- a/source/log/include/log/log_aspect_stream.h +++ b/source/log/include/log/log_aspect_stream.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_handle.h b/source/log/include/log/log_handle.h index c8e9aed7e..f5c1256c9 100644 --- a/source/log/include/log/log_handle.h +++ b/source/log/include/log/log_handle.h @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/include/log/log_impl.h b/source/log/include/log/log_impl.h index e4f868436..49121ef1d 100644 --- a/source/log/include/log/log_impl.h +++ b/source/log/include/log/log_impl.h @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/include/log/log_level.h b/source/log/include/log/log_level.h index 9549ae94f..02598159c 100644 --- a/source/log/include/log/log_level.h +++ b/source/log/include/log/log_level.h @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/include/log/log_map.h b/source/log/include/log/log_map.h index edb4ff3fd..58504eef0 100644 --- a/source/log/include/log/log_map.h +++ b/source/log/include/log/log_map.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy.h b/source/log/include/log/log_policy.h index 57f674ca4..2340673c3 100644 --- a/source/log/include/log/log_policy.h +++ b/source/log/include/log/log_policy.h @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/include/log/log_policy_format.h b/source/log/include/log/log_policy_format.h index 185f77290..d31fc1874 100644 --- a/source/log/include/log/log_policy_format.h +++ b/source/log/include/log/log_policy_format.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_format_binary.h b/source/log/include/log/log_policy_format_binary.h index 7a6f72f13..f2811526e 100644 --- a/source/log/include/log/log_policy_format_binary.h +++ b/source/log/include/log/log_policy_format_binary.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_format_custom.h b/source/log/include/log/log_policy_format_custom.h index 5d5d46ecf..e58d96c73 100644 --- a/source/log/include/log/log_policy_format_custom.h +++ b/source/log/include/log/log_policy_format_custom.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_format_text.h b/source/log/include/log/log_policy_format_text.h index c6405dea7..83e041a74 100644 --- a/source/log/include/log/log_policy_format_text.h +++ b/source/log/include/log/log_policy_format_text.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_schedule.h b/source/log/include/log/log_policy_schedule.h index dfe21f3d7..85d212135 100644 --- a/source/log/include/log/log_policy_schedule.h +++ b/source/log/include/log/log_policy_schedule.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_schedule_async.h b/source/log/include/log/log_policy_schedule_async.h index 87c90f250..1acc0992a 100644 --- a/source/log/include/log/log_policy_schedule_async.h +++ b/source/log/include/log/log_policy_schedule_async.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_schedule_sync.h b/source/log/include/log/log_policy_schedule_sync.h index 3e5671e9c..dea6dc2a1 100644 --- a/source/log/include/log/log_policy_schedule_sync.h +++ b/source/log/include/log/log_policy_schedule_sync.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_storage.h b/source/log/include/log/log_policy_storage.h index 9fe66d18b..21ed8cb43 100644 --- a/source/log/include/log/log_policy_storage.h +++ b/source/log/include/log/log_policy_storage.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_storage_batch.h b/source/log/include/log/log_policy_storage_batch.h index 94b617499..cb5839a82 100644 --- a/source/log/include/log/log_policy_storage_batch.h +++ b/source/log/include/log/log_policy_storage_batch.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_storage_sequential.h b/source/log/include/log/log_policy_storage_sequential.h index ad6290199..6ec9c39c7 100644 --- a/source/log/include/log/log_policy_storage_sequential.h +++ b/source/log/include/log/log_policy_storage_sequential.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_stream.h b/source/log/include/log/log_policy_stream.h index c9d184c06..2bd99a4c5 100644 --- a/source/log/include/log/log_policy_stream.h +++ b/source/log/include/log/log_policy_stream.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_stream_custom.h b/source/log/include/log/log_policy_stream_custom.h index 1ab02b93e..e8d718fbb 100644 --- a/source/log/include/log/log_policy_stream_custom.h +++ b/source/log/include/log/log_policy_stream_custom.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_stream_file.h b/source/log/include/log/log_policy_stream_file.h index 11adbad10..d901f4916 100644 --- a/source/log/include/log/log_policy_stream_file.h +++ b/source/log/include/log/log_policy_stream_file.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_stream_nginx.h b/source/log/include/log/log_policy_stream_nginx.h index cf456ea03..70d0da145 100644 --- a/source/log/include/log/log_policy_stream_nginx.h +++ b/source/log/include/log/log_policy_stream_nginx.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_stream_socket.h b/source/log/include/log/log_policy_stream_socket.h index 97c5746af..3fc593297 100644 --- a/source/log/include/log/log_policy_stream_socket.h +++ b/source/log/include/log/log_policy_stream_socket.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_stream_stdio.h b/source/log/include/log/log_policy_stream_stdio.h index 13031c8ee..20d118796 100644 --- a/source/log/include/log/log_policy_stream_stdio.h +++ b/source/log/include/log/log_policy_stream_stdio.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_policy_stream_syslog.h b/source/log/include/log/log_policy_stream_syslog.h index 871966e00..558e5de77 100644 --- a/source/log/include/log/log_policy_stream_syslog.h +++ b/source/log/include/log/log_policy_stream_syslog.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_preprocessor.h b/source/log/include/log/log_preprocessor.h index 621a2f2b5..e2dfb62dc 100644 --- a/source/log/include/log/log_preprocessor.h +++ b/source/log/include/log/log_preprocessor.h @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/include/log/log_record.h b/source/log/include/log/log_record.h index 2e1d8dda0..4250471e3 100644 --- a/source/log/include/log/log_record.h +++ b/source/log/include/log/log_record.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_singleton.h b/source/log/include/log/log_singleton.h index 063357f10..23edd30a8 100644 --- a/source/log/include/log/log_singleton.h +++ b/source/log/include/log/log_singleton.h @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/include/log/log_valid_size.h b/source/log/include/log/log_valid_size.h index c7cf1dad5..d822da16a 100644 --- a/source/log/include/log/log_valid_size.h +++ b/source/log/include/log/log_valid_size.h @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/source/log.c b/source/log/source/log.c index 144fea167..3d22b4541 100644 --- a/source/log/source/log.c +++ b/source/log/source/log.c @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -248,7 +248,7 @@ const char *log_print_info(void) { static const char log_info[] = "Logger Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef LOG_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/log/source/log_aspect.c b/source/log/source/log_aspect.c index c5025da4c..aeb11efe5 100644 --- a/source/log/source/log_aspect.c +++ b/source/log/source/log_aspect.c @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/source/log_aspect_format.c b/source/log/source/log_aspect_format.c index a75c74bfc..4aa81b0cc 100644 --- a/source/log/source/log_aspect_format.c +++ b/source/log/source/log_aspect_format.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_aspect_schedule.c b/source/log/source/log_aspect_schedule.c index 12f946f0d..d951f8aee 100644 --- a/source/log/source/log_aspect_schedule.c +++ b/source/log/source/log_aspect_schedule.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_aspect_storage.c b/source/log/source/log_aspect_storage.c index d0b417fb9..ce23ac891 100644 --- a/source/log/source/log_aspect_storage.c +++ b/source/log/source/log_aspect_storage.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_aspect_stream.c b/source/log/source/log_aspect_stream.c index f16d1e213..01cfac361 100644 --- a/source/log/source/log_aspect_stream.c +++ b/source/log/source/log_aspect_stream.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_handle.c b/source/log/source/log_handle.c index 3fa45b530..e79c9a1dd 100644 --- a/source/log/source/log_handle.c +++ b/source/log/source/log_handle.c @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/source/log_impl.c b/source/log/source/log_impl.c index 330b339dd..bd36b12cb 100644 --- a/source/log/source/log_impl.c +++ b/source/log/source/log_impl.c @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/source/log_level.c b/source/log/source/log_level.c index a423e5d33..17b453dbe 100644 --- a/source/log/source/log_level.c +++ b/source/log/source/log_level.c @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/source/log_map.c b/source/log/source/log_map.c index 318e594b0..6bbbcc569 100644 --- a/source/log/source/log_map.c +++ b/source/log/source/log_map.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy.c b/source/log/source/log_policy.c index 67c57ede9..5afce576a 100644 --- a/source/log/source/log_policy.c +++ b/source/log/source/log_policy.c @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/log/source/log_policy_format.c b/source/log/source/log_policy_format.c index 28201378f..a54e306f9 100644 --- a/source/log/source/log_policy_format.c +++ b/source/log/source/log_policy_format.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_format_binary.c b/source/log/source/log_policy_format_binary.c index 9a9c9e48c..3730e91f1 100644 --- a/source/log/source/log_policy_format_binary.c +++ b/source/log/source/log_policy_format_binary.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_format_custom.c b/source/log/source/log_policy_format_custom.c index 758b25c75..7cb4b8a93 100644 --- a/source/log/source/log_policy_format_custom.c +++ b/source/log/source/log_policy_format_custom.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_format_text.c b/source/log/source/log_policy_format_text.c index 1a4648fe5..0ae0e13ed 100644 --- a/source/log/source/log_policy_format_text.c +++ b/source/log/source/log_policy_format_text.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_schedule.c b/source/log/source/log_policy_schedule.c index 2dd465173..211400762 100644 --- a/source/log/source/log_policy_schedule.c +++ b/source/log/source/log_policy_schedule.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_schedule_async.c b/source/log/source/log_policy_schedule_async.c index 27494e95d..27f0ba3f2 100644 --- a/source/log/source/log_policy_schedule_async.c +++ b/source/log/source/log_policy_schedule_async.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_schedule_sync.c b/source/log/source/log_policy_schedule_sync.c index 36e90fc50..9d6c78b60 100644 --- a/source/log/source/log_policy_schedule_sync.c +++ b/source/log/source/log_policy_schedule_sync.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_storage.c b/source/log/source/log_policy_storage.c index 7590fe350..9a95e52a1 100644 --- a/source/log/source/log_policy_storage.c +++ b/source/log/source/log_policy_storage.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_storage_batch.c b/source/log/source/log_policy_storage_batch.c index 53a931d14..d34f9e794 100644 --- a/source/log/source/log_policy_storage_batch.c +++ b/source/log/source/log_policy_storage_batch.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_storage_sequential.c b/source/log/source/log_policy_storage_sequential.c index 2a546a487..1abb17e27 100644 --- a/source/log/source/log_policy_storage_sequential.c +++ b/source/log/source/log_policy_storage_sequential.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_stream.c b/source/log/source/log_policy_stream.c index 123309bb0..1792d80b6 100644 --- a/source/log/source/log_policy_stream.c +++ b/source/log/source/log_policy_stream.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_stream_custom.c b/source/log/source/log_policy_stream_custom.c index ef0fd12df..d20bd4761 100644 --- a/source/log/source/log_policy_stream_custom.c +++ b/source/log/source/log_policy_stream_custom.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_stream_file.c b/source/log/source/log_policy_stream_file.c index e6ea46dd9..8453d46fb 100644 --- a/source/log/source/log_policy_stream_file.c +++ b/source/log/source/log_policy_stream_file.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_stream_nginx.c b/source/log/source/log_policy_stream_nginx.c index 85b2128b9..5309c1408 100644 --- a/source/log/source/log_policy_stream_nginx.c +++ b/source/log/source/log_policy_stream_nginx.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_stream_socket.c b/source/log/source/log_policy_stream_socket.c index f37b6ffad..bc99b80e4 100644 --- a/source/log/source/log_policy_stream_socket.c +++ b/source/log/source/log_policy_stream_socket.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_stream_stdio.c b/source/log/source/log_policy_stream_stdio.c index f07c7de31..610a2c5e4 100644 --- a/source/log/source/log_policy_stream_stdio.c +++ b/source/log/source/log_policy_stream_stdio.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_policy_stream_syslog.c b/source/log/source/log_policy_stream_syslog.c index f07edb6e0..22aefbef1 100644 --- a/source/log/source/log_policy_stream_syslog.c +++ b/source/log/source/log_policy_stream_syslog.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_record.c b/source/log/source/log_record.c index 89c975c35..bdb6f2a6c 100644 --- a/source/log/source/log_record.c +++ b/source/log/source/log_record.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_singleton.c b/source/log/source/log_singleton.c index 531e9e881..39d326e64 100644 --- a/source/log/source/log_singleton.c +++ b/source/log/source/log_singleton.c @@ -1,6 +1,6 @@ /* * Logger Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic logger library providing application execution reports. * diff --git a/source/log/source/log_valid_size.c b/source/log/source/log_valid_size.c index 41a9dca2d..5583c000c 100644 --- a/source/log/source/log_valid_size.c +++ b/source/log/source/log_valid_size.c @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/include/memory/memory.h b/source/memory/include/memory/memory.h index ea7a84efa..e1ce6a244 100644 --- a/source/memory/include/memory/memory.h +++ b/source/memory/include/memory/memory.h @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/include/memory/memory_allocator.h b/source/memory/include/memory/memory_allocator.h index 705f2f789..b8448027e 100644 --- a/source/memory/include/memory/memory_allocator.h +++ b/source/memory/include/memory/memory_allocator.h @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/include/memory/memory_allocator_iface.h b/source/memory/include/memory/memory_allocator_iface.h index c480c270a..9249b263b 100644 --- a/source/memory/include/memory/memory_allocator_iface.h +++ b/source/memory/include/memory/memory_allocator_iface.h @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/include/memory/memory_allocator_impl.h b/source/memory/include/memory/memory_allocator_impl.h index 3184cc7ab..73c4369b2 100644 --- a/source/memory/include/memory/memory_allocator_impl.h +++ b/source/memory/include/memory/memory_allocator_impl.h @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/include/memory/memory_allocator_nginx.h b/source/memory/include/memory/memory_allocator_nginx.h index 9a33427da..4bb005c0a 100644 --- a/source/memory/include/memory/memory_allocator_nginx.h +++ b/source/memory/include/memory/memory_allocator_nginx.h @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/include/memory/memory_allocator_nginx_impl.h b/source/memory/include/memory/memory_allocator_nginx_impl.h index fd5137241..73aa5a4f2 100644 --- a/source/memory/include/memory/memory_allocator_nginx_impl.h +++ b/source/memory/include/memory/memory_allocator_nginx_impl.h @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/include/memory/memory_allocator_std.h b/source/memory/include/memory/memory_allocator_std.h index 82e28556b..0f27a83fe 100644 --- a/source/memory/include/memory/memory_allocator_std.h +++ b/source/memory/include/memory/memory_allocator_std.h @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/include/memory/memory_allocator_std_impl.h b/source/memory/include/memory/memory_allocator_std_impl.h index 96e625222..20fc8bb45 100644 --- a/source/memory/include/memory/memory_allocator_std_impl.h +++ b/source/memory/include/memory/memory_allocator_std_impl.h @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/source/memory.c b/source/memory/source/memory.c index 91234095f..cb41b078b 100644 --- a/source/memory/source/memory.c +++ b/source/memory/source/memory.c @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ const char *memory_print_info(void) { static const char memory_info[] = "Memory Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef MEMORY_STATIC_DEFINE "Compiled as static library type" diff --git a/source/memory/source/memory_allocator.c b/source/memory/source/memory_allocator.c index a9469405b..c6962d83a 100644 --- a/source/memory/source/memory_allocator.c +++ b/source/memory/source/memory_allocator.c @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/source/memory_allocator_nginx.c b/source/memory/source/memory_allocator_nginx.c index 8d9d89342..000dffb4b 100644 --- a/source/memory/source/memory_allocator_nginx.c +++ b/source/memory/source/memory_allocator_nginx.c @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/source/memory_allocator_nginx_impl.c b/source/memory/source/memory_allocator_nginx_impl.c index 950a07fb7..5acec5ef1 100644 --- a/source/memory/source/memory_allocator_nginx_impl.c +++ b/source/memory/source/memory_allocator_nginx_impl.c @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/source/memory_allocator_std.c b/source/memory/source/memory_allocator_std.c index f7cff21ab..9d5bf5807 100644 --- a/source/memory/source/memory_allocator_std.c +++ b/source/memory/source/memory_allocator_std.c @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/memory/source/memory_allocator_std_impl.c b/source/memory/source/memory_allocator_std_impl.c index b34ec46fc..5d1cebf03 100644 --- a/source/memory/source/memory_allocator_std_impl.c +++ b/source/memory/source/memory_allocator_std_impl.c @@ -2,7 +2,7 @@ * Memory Library by Parra Studios * A generic cross-platform memory utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/include/metacall/metacall.h b/source/metacall/include/metacall/metacall.h index 9aad035c7..f069d444b 100644 --- a/source/metacall/include/metacall/metacall.h +++ b/source/metacall/include/metacall/metacall.h @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/include/metacall/metacall_allocator.h b/source/metacall/include/metacall/metacall_allocator.h index 2e678ad91..46fc614c4 100644 --- a/source/metacall/include/metacall/metacall_allocator.h +++ b/source/metacall/include/metacall/metacall_allocator.h @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/include/metacall/metacall_error.h b/source/metacall/include/metacall/metacall_error.h index c2fd98f3e..e65d5f986 100644 --- a/source/metacall/include/metacall/metacall_error.h +++ b/source/metacall/include/metacall/metacall_error.h @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/include/metacall/metacall_fork.h b/source/metacall/include/metacall/metacall_fork.h index d3a78eccc..0cbfb86d1 100644 --- a/source/metacall/include/metacall/metacall_fork.h +++ b/source/metacall/include/metacall/metacall_fork.h @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/include/metacall/metacall_log.h b/source/metacall/include/metacall/metacall_log.h index f9718972f..ee28ccdbc 100644 --- a/source/metacall/include/metacall/metacall_log.h +++ b/source/metacall/include/metacall/metacall_log.h @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/include/metacall/metacall_value.h b/source/metacall/include/metacall/metacall_value.h index 86241feca..0634e91bf 100644 --- a/source/metacall/include/metacall/metacall_value.h +++ b/source/metacall/include/metacall/metacall_value.h @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/metacall_def.h.in b/source/metacall/metacall_def.h.in index 8c0b3637f..3486a1cea 100644 --- a/source/metacall/metacall_def.h.in +++ b/source/metacall/metacall_def.h.in @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/source/metacall.c b/source/metacall/source/metacall.c index eb38caa8e..701375304 100644 --- a/source/metacall/source/metacall.c +++ b/source/metacall/source/metacall.c @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -2293,7 +2293,7 @@ const char *metacall_print_info(void) { static const char metacall_info[] = "MetaCall Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef METACALL_STATIC_DEFINE "Compiled as static library type" diff --git a/source/metacall/source/metacall_allocator.c b/source/metacall/source/metacall_allocator.c index 1037d1217..ee88cdd54 100644 --- a/source/metacall/source/metacall_allocator.c +++ b/source/metacall/source/metacall_allocator.c @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/source/metacall_error.c b/source/metacall/source/metacall_error.c index 83eb9ee49..315a5614d 100644 --- a/source/metacall/source/metacall_error.c +++ b/source/metacall/source/metacall_error.c @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/source/metacall_fork.c b/source/metacall/source/metacall_fork.c index 2bfa05e6c..8eea459f8 100644 --- a/source/metacall/source/metacall_fork.c +++ b/source/metacall/source/metacall_fork.c @@ -1,6 +1,6 @@ /* * MetaCall Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A library for providing a foreign function interface calls. * diff --git a/source/metacall/source/metacall_log.c b/source/metacall/source/metacall_log.c index 57a8227a7..0678f738d 100644 --- a/source/metacall/source/metacall_log.c +++ b/source/metacall/source/metacall_log.c @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/metacall/source/metacall_value.c b/source/metacall/source/metacall_value.c index e9c006c3a..63333bde5 100644 --- a/source/metacall/source/metacall_value.c +++ b/source/metacall/source/metacall_value.c @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/include/plugin/plugin.h b/source/plugin/include/plugin/plugin.h index 7a08c0156..8f856a36f 100644 --- a/source/plugin/include/plugin/plugin.h +++ b/source/plugin/include/plugin/plugin.h @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/include/plugin/plugin_descriptor.h b/source/plugin/include/plugin/plugin_descriptor.h index d8e418377..47eb54fc8 100644 --- a/source/plugin/include/plugin/plugin_descriptor.h +++ b/source/plugin/include/plugin/plugin_descriptor.h @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/include/plugin/plugin_impl.h b/source/plugin/include/plugin/plugin_impl.h index 152e34a16..3a0d108b2 100644 --- a/source/plugin/include/plugin/plugin_impl.h +++ b/source/plugin/include/plugin/plugin_impl.h @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/include/plugin/plugin_interface.hpp b/source/plugin/include/plugin/plugin_interface.hpp index 77680ea03..a539ad258 100644 --- a/source/plugin/include/plugin/plugin_interface.hpp +++ b/source/plugin/include/plugin/plugin_interface.hpp @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/include/plugin/plugin_loader.h b/source/plugin/include/plugin/plugin_loader.h index b44e2103d..2113010cb 100644 --- a/source/plugin/include/plugin/plugin_loader.h +++ b/source/plugin/include/plugin/plugin_loader.h @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/include/plugin/plugin_manager.h b/source/plugin/include/plugin/plugin_manager.h index 8e522db10..8698733b5 100644 --- a/source/plugin/include/plugin/plugin_manager.h +++ b/source/plugin/include/plugin/plugin_manager.h @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/source/plugin.c b/source/plugin/source/plugin.c index 9cd784c8b..4089f2d02 100644 --- a/source/plugin/source/plugin.c +++ b/source/plugin/source/plugin.c @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,7 +30,7 @@ const char *plugin_print_info(void) { static const char plugin_info[] = "Plugin Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef PLUGIN_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/plugin/source/plugin_descriptor.c b/source/plugin/source/plugin_descriptor.c index f08c35f2c..491895e05 100644 --- a/source/plugin/source/plugin_descriptor.c +++ b/source/plugin/source/plugin_descriptor.c @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/source/plugin_impl.c b/source/plugin/source/plugin_impl.c index 798075fcf..785a55834 100644 --- a/source/plugin/source/plugin_impl.c +++ b/source/plugin/source/plugin_impl.c @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/source/plugin_loader.c b/source/plugin/source/plugin_loader.c index 1db308392..5212f7ebb 100644 --- a/source/plugin/source/plugin_loader.c +++ b/source/plugin/source/plugin_loader.c @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugin/source/plugin_manager.c b/source/plugin/source/plugin_manager.c index e779593f1..da0e7a2d4 100644 --- a/source/plugin/source/plugin_manager.c +++ b/source/plugin/source/plugin_manager.c @@ -2,7 +2,7 @@ * Plugin Library by Parra Studios * A library for plugins at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugins/backtrace_plugin/include/backtrace_plugin/backtrace_plugin.h b/source/plugins/backtrace_plugin/include/backtrace_plugin/backtrace_plugin.h index a6ed27562..a0630cb95 100644 --- a/source/plugins/backtrace_plugin/include/backtrace_plugin/backtrace_plugin.h +++ b/source/plugins/backtrace_plugin/include/backtrace_plugin/backtrace_plugin.h @@ -2,7 +2,7 @@ * Backtrace Plugin by Parra Studios * A plugin implementing backtracing functionality for MetaCall Core. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugins/backtrace_plugin/source/backtrace_plugin.cpp b/source/plugins/backtrace_plugin/source/backtrace_plugin.cpp index 825233a45..ca3611ed7 100644 --- a/source/plugins/backtrace_plugin/source/backtrace_plugin.cpp +++ b/source/plugins/backtrace_plugin/source/backtrace_plugin.cpp @@ -2,7 +2,7 @@ * Backtrace Plugin by Parra Studios * A plugin implementing backtracing functionality for MetaCall Core. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugins/sandbox_plugin/cmake/FindLibSecComp.cmake b/source/plugins/sandbox_plugin/cmake/FindLibSecComp.cmake index b1e2af0c8..9293d405e 100644 --- a/source/plugins/sandbox_plugin/cmake/FindLibSecComp.cmake +++ b/source/plugins/sandbox_plugin/cmake/FindLibSecComp.cmake @@ -2,7 +2,7 @@ # CMake Find LibSecComp library by Parra Studios # CMake script to find SecComp library. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/plugins/sandbox_plugin/include/sandbox_plugin/sandbox_plugin.h b/source/plugins/sandbox_plugin/include/sandbox_plugin/sandbox_plugin.h index 9ec080fd4..670d69683 100644 --- a/source/plugins/sandbox_plugin/include/sandbox_plugin/sandbox_plugin.h +++ b/source/plugins/sandbox_plugin/include/sandbox_plugin/sandbox_plugin.h @@ -2,7 +2,7 @@ * Sandbox Plugin by Parra Studios * A plugin implementing sandboxing functionality for MetaCall Core. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/plugins/sandbox_plugin/source/sandbox_plugin.cpp b/source/plugins/sandbox_plugin/source/sandbox_plugin.cpp index c7c6ab649..481942a03 100644 --- a/source/plugins/sandbox_plugin/source/sandbox_plugin.cpp +++ b/source/plugins/sandbox_plugin/source/sandbox_plugin.cpp @@ -2,7 +2,7 @@ * Sandbox Plugin by Parra Studios * A plugin implementing sandboxing functionality for MetaCall Core. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/portability/include/portability/portability.h b/source/portability/include/portability/portability.h index 37c5f3dcd..6316fda48 100644 --- a/source/portability/include/portability/portability.h +++ b/source/portability/include/portability/portability.h @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/portability/include/portability/portability_assert.h b/source/portability/include/portability/portability_assert.h index 87a8c6df9..3af45fd65 100644 --- a/source/portability/include/portability/portability_assert.h +++ b/source/portability/include/portability/portability_assert.h @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/portability/include/portability/portability_compiler_detection.h b/source/portability/include/portability/portability_compiler_detection.h index 1a6fb7430..ec2e4eaaa 100644 --- a/source/portability/include/portability/portability_compiler_detection.h +++ b/source/portability/include/portability/portability_compiler_detection.h @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/portability/include/portability/portability_executable_path.h b/source/portability/include/portability/portability_executable_path.h index 0f1908d59..15494b002 100644 --- a/source/portability/include/portability/portability_executable_path.h +++ b/source/portability/include/portability/portability_executable_path.h @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/portability/include/portability/portability_library_path.h b/source/portability/include/portability/portability_library_path.h index 1c53a7cba..e31bd7d49 100644 --- a/source/portability/include/portability/portability_library_path.h +++ b/source/portability/include/portability/portability_library_path.h @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/portability/include/portability/portability_path.h b/source/portability/include/portability/portability_path.h index f8124edca..5453c37ad 100644 --- a/source/portability/include/portability/portability_path.h +++ b/source/portability/include/portability/portability_path.h @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/portability/source/portability.c b/source/portability/source/portability.c index 8320e75e6..7c57003ff 100644 --- a/source/portability/source/portability.c +++ b/source/portability/source/portability.c @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ const char *portability_print_info(void) { static const char portability_info[] = "Portability Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef PORTABILITY_STATIC_DEFINE "Compiled as static library type" diff --git a/source/portability/source/portability_executable_path.c b/source/portability/source/portability_executable_path.c index 75cc306c8..1c9c4e75b 100644 --- a/source/portability/source/portability_executable_path.c +++ b/source/portability/source/portability_executable_path.c @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/portability/source/portability_library_path.c b/source/portability/source/portability_library_path.c index baaaa5bb1..a8b763cb2 100644 --- a/source/portability/source/portability_library_path.c +++ b/source/portability/source/portability_library_path.c @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/portability/source/portability_path.c b/source/portability/source/portability_path.c index 87bedb53e..3a1a02ac7 100644 --- a/source/portability/source/portability_path.c +++ b/source/portability/source/portability_path.c @@ -2,7 +2,7 @@ * Portability Library by Parra Studios * A generic cross-platform portability utility. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/CMakeLists.txt b/source/ports/CMakeLists.txt index d072ca0f4..06a624c5b 100644 --- a/source/ports/CMakeLists.txt +++ b/source/ports/CMakeLists.txt @@ -2,7 +2,7 @@ # MetaCall Ports by Parra Studios # A complete infrastructure for supporting multiple language bindings in MetaCall. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/ports/cxx_port/include/metacall/metacall.hpp b/source/ports/cxx_port/include/metacall/metacall.hpp index 6e730b405..8e2a1ef66 100644 --- a/source/ports/cxx_port/include/metacall/metacall.hpp +++ b/source/ports/cxx_port/include/metacall/metacall.hpp @@ -2,7 +2,7 @@ * Format Library by Parra Studios * A cross-platform library for supporting formatted input / output. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/cxx_port/inline/metacall/metacall.inl b/source/ports/cxx_port/inline/metacall/metacall.inl index 01a6df38e..743c6a0c8 100644 --- a/source/ports/cxx_port/inline/metacall/metacall.inl +++ b/source/ports/cxx_port/inline/metacall/metacall.inl @@ -2,7 +2,7 @@ * Format Library by Parra Studios * A cross-platform library for supporting formatted input / output. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/cxx_port/source/metacall.cpp b/source/ports/cxx_port/source/metacall.cpp index 416b5e177..d1a7cbe8f 100644 --- a/source/ports/cxx_port/source/metacall.cpp +++ b/source/ports/cxx_port/source/metacall.cpp @@ -2,7 +2,7 @@ * Format Library by Parra Studios * A cross-platform library for supporting formatted input / output. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/go_port/source/await.go b/source/ports/go_port/source/await.go index 71bff3e64..11661b2dc 100644 --- a/source/ports/go_port/source/await.go +++ b/source/ports/go_port/source/await.go @@ -2,7 +2,7 @@ * MetaCall Go Port by Parra Studios * A frontend for Go language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/go_port/source/go_port.go b/source/ports/go_port/source/go_port.go index b2de8ed02..4a7e12574 100644 --- a/source/ports/go_port/source/go_port.go +++ b/source/ports/go_port/source/go_port.go @@ -2,7 +2,7 @@ * MetaCall Go Port by Parra Studios * A frontend for Go language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/go_port/source/pointer.go b/source/ports/go_port/source/pointer.go index 2803147d7..5317378ec 100644 --- a/source/ports/go_port/source/pointer.go +++ b/source/ports/go_port/source/pointer.go @@ -2,7 +2,7 @@ * MetaCall Go Port by Parra Studios * A frontend for Go language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/js_port/include/js_port/js_port.h b/source/ports/js_port/include/js_port/js_port.h index 7e881be85..245d537f1 100644 --- a/source/ports/js_port/include/js_port/js_port.h +++ b/source/ports/js_port/include/js_port/js_port.h @@ -2,7 +2,7 @@ * MetaCall SWIG Wrapper by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/js_port/interface/js_port/js_port.i b/source/ports/js_port/interface/js_port/js_port.i index 291a0c181..be171c710 100644 --- a/source/ports/js_port/interface/js_port/js_port.i +++ b/source/ports/js_port/interface/js_port/js_port.i @@ -2,7 +2,7 @@ * MetaCall SWIG Wrapper by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/js_port/interface/js_port/js_port_impl.i b/source/ports/js_port/interface/js_port/js_port_impl.i index 51faee3c7..711d560a4 100644 --- a/source/ports/js_port/interface/js_port/js_port_impl.i +++ b/source/ports/js_port/interface/js_port/js_port_impl.i @@ -2,7 +2,7 @@ * MetaCall SWIG Wrapper by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/js_port/source/js_port.c b/source/ports/js_port/source/js_port.c index eff90c6ca..a2a304400 100644 --- a/source/ports/js_port/source/js_port.c +++ b/source/ports/js_port/source/js_port.c @@ -2,7 +2,7 @@ * MetaCall SWIG Wrapper by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/js_port/test/main.cpp b/source/ports/js_port/test/main.cpp index 5d40bb632..2fe1b87e5 100644 --- a/source/ports/js_port/test/main.cpp +++ b/source/ports/js_port/test/main.cpp @@ -2,7 +2,7 @@ * MetaCall SWIG Wrapper by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/nim_port/LICENSE b/source/ports/nim_port/LICENSE index 5a00ce214..2e591e57a 100644 --- a/source/ports/nim_port/LICENSE +++ b/source/ports/nim_port/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2016-2022 Vicente Eduardo Ferrer Garcia + Copyright 2016-2024 Vicente Eduardo Ferrer Garcia 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/source/ports/node_port/LICENSE b/source/ports/node_port/LICENSE index 5a00ce214..2e591e57a 100644 --- a/source/ports/node_port/LICENSE +++ b/source/ports/node_port/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2016-2022 Vicente Eduardo Ferrer Garcia + Copyright 2016-2024 Vicente Eduardo Ferrer Garcia 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/source/ports/node_port/index.js b/source/ports/node_port/index.js index 8886c2022..2aa604289 100644 --- a/source/ports/node_port/index.js +++ b/source/ports/node_port/index.js @@ -2,7 +2,7 @@ * MetaCall NodeJS Port by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/node_port/test.js b/source/ports/node_port/test.js index d5cb4b621..1bab3e30b 100644 --- a/source/ports/node_port/test.js +++ b/source/ports/node_port/test.js @@ -2,7 +2,7 @@ * MetaCall NodeJS Port by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/node_port/test/index.js b/source/ports/node_port/test/index.js index 23995a849..83d66e0f6 100644 --- a/source/ports/node_port/test/index.js +++ b/source/ports/node_port/test/index.js @@ -2,7 +2,7 @@ * MetaCall NodeJS Port by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/node_port/upload.sh b/source/ports/node_port/upload.sh index ac05feffe..297ced5a9 100755 --- a/source/ports/node_port/upload.sh +++ b/source/ports/node_port/upload.sh @@ -4,7 +4,7 @@ # MetaCall NodeJS Port Deploy Script by Parra Studios # Script utility for deploying MetaCall NodeJS Port to NPM. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/ports/py_port/LICENSE.txt b/source/ports/py_port/LICENSE.txt index 5a00ce214..2e591e57a 100644 --- a/source/ports/py_port/LICENSE.txt +++ b/source/ports/py_port/LICENSE.txt @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2016-2022 Vicente Eduardo Ferrer Garcia + Copyright 2016-2024 Vicente Eduardo Ferrer Garcia 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/source/ports/py_port/helper/__init__.py b/source/ports/py_port/helper/__init__.py index c21493f20..e410e7868 100644 --- a/source/ports/py_port/helper/__init__.py +++ b/source/ports/py_port/helper/__init__.py @@ -3,7 +3,7 @@ # MetaCall Python Port by Parra Studios # A frontend for Python language bindings in MetaCall. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/ports/py_port/metacall/__init__.py b/source/ports/py_port/metacall/__init__.py index a185a2121..230c1ae7c 100644 --- a/source/ports/py_port/metacall/__init__.py +++ b/source/ports/py_port/metacall/__init__.py @@ -3,7 +3,7 @@ # MetaCall Python Port by Parra Studios # A frontend for Python language bindings in MetaCall. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/ports/py_port/metacall/api.py b/source/ports/py_port/metacall/api.py index c4392b003..9ffcea830 100644 --- a/source/ports/py_port/metacall/api.py +++ b/source/ports/py_port/metacall/api.py @@ -3,7 +3,7 @@ # MetaCall Python Port by Parra Studios # A frontend for Python language bindings in MetaCall. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/ports/py_port/metacall/module_linux.py b/source/ports/py_port/metacall/module_linux.py index 45c277405..0a18b3260 100644 --- a/source/ports/py_port/metacall/module_linux.py +++ b/source/ports/py_port/metacall/module_linux.py @@ -3,7 +3,7 @@ # MetaCall Python Port by Parra Studios # A frontend for Python language bindings in MetaCall. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/ports/py_port/metacall/module_win32.py b/source/ports/py_port/metacall/module_win32.py index 08f522a7a..aed098254 100644 --- a/source/ports/py_port/metacall/module_win32.py +++ b/source/ports/py_port/metacall/module_win32.py @@ -3,7 +3,7 @@ # MetaCall Python Port by Parra Studios # A frontend for Python language bindings in MetaCall. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/ports/py_port/setup.py b/source/ports/py_port/setup.py index 5d0811582..100795d77 100644 --- a/source/ports/py_port/setup.py +++ b/source/ports/py_port/setup.py @@ -3,7 +3,7 @@ # MetaCall Python Port by Parra Studios # A frontend for Python language bindings in MetaCall. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/ports/py_port/upload.sh b/source/ports/py_port/upload.sh index 9555e3c4c..e8e7b73fc 100644 --- a/source/ports/py_port/upload.sh +++ b/source/ports/py_port/upload.sh @@ -4,7 +4,7 @@ # MetaCall Python Port Deploy Script by Parra Studios # Script utility for deploying MetaCall Python Port to PyPi. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/ports/rb_port/include/rb_port/rb_port.h b/source/ports/rb_port/include/rb_port/rb_port.h index 69d7b3d4d..d2682f4b8 100644 --- a/source/ports/rb_port/include/rb_port/rb_port.h +++ b/source/ports/rb_port/include/rb_port/rb_port.h @@ -2,7 +2,7 @@ * MetaCall SWIG Wrapper by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/rb_port/interface/rb_port/rb_port.i b/source/ports/rb_port/interface/rb_port/rb_port.i index de350bfb3..7316e756f 100644 --- a/source/ports/rb_port/interface/rb_port/rb_port.i +++ b/source/ports/rb_port/interface/rb_port/rb_port.i @@ -2,7 +2,7 @@ * MetaCall SWIG Wrapper by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/rb_port/interface/rb_port/rb_port_impl.i b/source/ports/rb_port/interface/rb_port/rb_port_impl.i index 98d63de20..bd0820f2b 100644 --- a/source/ports/rb_port/interface/rb_port/rb_port_impl.i +++ b/source/ports/rb_port/interface/rb_port/rb_port_impl.i @@ -2,7 +2,7 @@ * MetaCall SWIG Wrapper by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/rb_port/source/rb_port.c b/source/ports/rb_port/source/rb_port.c index df4dbf080..81e52cbcf 100644 --- a/source/ports/rb_port/source/rb_port.c +++ b/source/ports/rb_port/source/rb_port.c @@ -2,7 +2,7 @@ * MetaCall SWIG Wrapper by Parra Studios * A complete infrastructure for supporting multiple language bindings in MetaCall. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/rs_port/LICENSE.txt b/source/ports/rs_port/LICENSE.txt index 5a00ce214..2e591e57a 100644 --- a/source/ports/rs_port/LICENSE.txt +++ b/source/ports/rs_port/LICENSE.txt @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2016-2022 Vicente Eduardo Ferrer Garcia + Copyright 2016-2024 Vicente Eduardo Ferrer Garcia 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/source/ports/rs_port/src/lib.rs b/source/ports/rs_port/src/lib.rs index 638e5186a..bc4241007 100644 --- a/source/ports/rs_port/src/lib.rs +++ b/source/ports/rs_port/src/lib.rs @@ -9,7 +9,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/ports/rs_port/upload.sh b/source/ports/rs_port/upload.sh index 398a8d644..9e132705b 100644 --- a/source/ports/rs_port/upload.sh +++ b/source/ports/rs_port/upload.sh @@ -4,7 +4,7 @@ # MetaCall Rust Port Deploy Script by Parra Studios # Script utility for deploying MetaCall Rust Port to Crates. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/preprocessor/cmake/preprocessor_arguments.cmake b/source/preprocessor/cmake/preprocessor_arguments.cmake index fc0f2754c..38014c9b8 100644 --- a/source/preprocessor/cmake/preprocessor_arguments.cmake +++ b/source/preprocessor/cmake/preprocessor_arguments.cmake @@ -2,7 +2,7 @@ # Preprocessor Library by Parra Studios # A generic header-only preprocessor metaprogramming library. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/preprocessor/cmake/preprocessor_arithmetic.cmake b/source/preprocessor/cmake/preprocessor_arithmetic.cmake index 7c063faec..eca9525db 100644 --- a/source/preprocessor/cmake/preprocessor_arithmetic.cmake +++ b/source/preprocessor/cmake/preprocessor_arithmetic.cmake @@ -2,7 +2,7 @@ # Preprocessor Library by Parra Studios # A generic header-only preprocessor metaprogramming library. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/preprocessor/cmake/preprocessor_boolean.cmake b/source/preprocessor/cmake/preprocessor_boolean.cmake index 3e8754cc1..444336b64 100644 --- a/source/preprocessor/cmake/preprocessor_boolean.cmake +++ b/source/preprocessor/cmake/preprocessor_boolean.cmake @@ -2,7 +2,7 @@ # Preprocessor Library by Parra Studios # A generic header-only preprocessor metaprogramming library. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/preprocessor/cmake/preprocessor_for.cmake b/source/preprocessor/cmake/preprocessor_for.cmake index 44e41aa3c..abded5af5 100644 --- a/source/preprocessor/cmake/preprocessor_for.cmake +++ b/source/preprocessor/cmake/preprocessor_for.cmake @@ -2,7 +2,7 @@ # Preprocessor Library by Parra Studios # A generic header-only preprocessor metaprogramming library. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/preprocessor/cmake/preprocessor_template.cmake b/source/preprocessor/cmake/preprocessor_template.cmake index 7f1a17e62..11d99a682 100644 --- a/source/preprocessor/cmake/preprocessor_template.cmake +++ b/source/preprocessor/cmake/preprocessor_template.cmake @@ -2,7 +2,7 @@ # Preprocessor Library by Parra Studios # A generic header-only preprocessor metaprogramming library. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/preprocessor/cmake/preprocessor_template.h.in b/source/preprocessor/cmake/preprocessor_template.h.in index ba90a72ca..41b0d1825 100644 --- a/source/preprocessor/cmake/preprocessor_template.h.in +++ b/source/preprocessor/cmake/preprocessor_template.h.in @@ -2,7 +2,7 @@ * Preprocessor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/preprocessor/include/preprocessor/preprocessor.h b/source/preprocessor/include/preprocessor/preprocessor.h index d493bad8e..e223cf40f 100644 --- a/source/preprocessor/include/preprocessor/preprocessor.h +++ b/source/preprocessor/include/preprocessor/preprocessor.h @@ -2,7 +2,7 @@ * Preprocessor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/preprocessor/include/preprocessor/preprocessor_arguments.h b/source/preprocessor/include/preprocessor/preprocessor_arguments.h index 8035fcee6..2f114d913 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_arguments.h +++ b/source/preprocessor/include/preprocessor/preprocessor_arguments.h @@ -2,7 +2,7 @@ * Preprocessor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/preprocessor/include/preprocessor/preprocessor_arithmetic.h b/source/preprocessor/include/preprocessor/preprocessor_arithmetic.h index 103f21c94..b1a9c9647 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_arithmetic.h +++ b/source/preprocessor/include/preprocessor/preprocessor_arithmetic.h @@ -2,7 +2,7 @@ * Preprocessor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/preprocessor/include/preprocessor/preprocessor_bit.h b/source/preprocessor/include/preprocessor/preprocessor_bit.h index 746781a6f..f2aee9d4d 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_bit.h +++ b/source/preprocessor/include/preprocessor/preprocessor_bit.h @@ -1,6 +1,6 @@ /* * Preprocessor Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic header-only preprocessor metaprogramming library. * diff --git a/source/preprocessor/include/preprocessor/preprocessor_boolean.h b/source/preprocessor/include/preprocessor/preprocessor_boolean.h index 1642c96f7..e042d9ff5 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_boolean.h +++ b/source/preprocessor/include/preprocessor/preprocessor_boolean.h @@ -2,7 +2,7 @@ * Preprocessor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/preprocessor/include/preprocessor/preprocessor_comma.h b/source/preprocessor/include/preprocessor/preprocessor_comma.h index 018603dfc..62ce258cc 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_comma.h +++ b/source/preprocessor/include/preprocessor/preprocessor_comma.h @@ -2,7 +2,7 @@ * Preprocessor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/preprocessor/include/preprocessor/preprocessor_comparison.h b/source/preprocessor/include/preprocessor/preprocessor_comparison.h index 9f7565df2..b4839e124 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_comparison.h +++ b/source/preprocessor/include/preprocessor/preprocessor_comparison.h @@ -1,6 +1,6 @@ /* * Preprocessor Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic header-only preprocessor metaprogramming library. * diff --git a/source/preprocessor/include/preprocessor/preprocessor_complement.h b/source/preprocessor/include/preprocessor/preprocessor_complement.h index 4585a8f70..a7300fc45 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_complement.h +++ b/source/preprocessor/include/preprocessor/preprocessor_complement.h @@ -1,6 +1,6 @@ /* * Preprocessor Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic header-only preprocessor metaprogramming library. * diff --git a/source/preprocessor/include/preprocessor/preprocessor_concatenation.h b/source/preprocessor/include/preprocessor/preprocessor_concatenation.h index ebcb0fe61..f54986f00 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_concatenation.h +++ b/source/preprocessor/include/preprocessor/preprocessor_concatenation.h @@ -1,6 +1,6 @@ /* * Preprocessor Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic header-only preprocessor metaprogramming library. * diff --git a/source/preprocessor/include/preprocessor/preprocessor_detection.h b/source/preprocessor/include/preprocessor/preprocessor_detection.h index dc7c51338..630676506 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_detection.h +++ b/source/preprocessor/include/preprocessor/preprocessor_detection.h @@ -1,6 +1,6 @@ /* * Preprocessor Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic header-only preprocessor metaprogramming library. * diff --git a/source/preprocessor/include/preprocessor/preprocessor_empty.h b/source/preprocessor/include/preprocessor/preprocessor_empty.h index 4ea6be1cf..0ce59a48c 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_empty.h +++ b/source/preprocessor/include/preprocessor/preprocessor_empty.h @@ -1,6 +1,6 @@ /* * Preprocessor Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic header-only preprocessor metaprogramming library. * diff --git a/source/preprocessor/include/preprocessor/preprocessor_for.h b/source/preprocessor/include/preprocessor/preprocessor_for.h index 6c3016db5..b391df429 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_for.h +++ b/source/preprocessor/include/preprocessor/preprocessor_for.h @@ -2,7 +2,7 @@ * Preprocessor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/preprocessor/include/preprocessor/preprocessor_if.h b/source/preprocessor/include/preprocessor/preprocessor_if.h index 797ff0fb8..622397e89 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_if.h +++ b/source/preprocessor/include/preprocessor/preprocessor_if.h @@ -1,6 +1,6 @@ /* * Preprocessor Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic header-only preprocessor metaprogramming library. * diff --git a/source/preprocessor/include/preprocessor/preprocessor_serial.h b/source/preprocessor/include/preprocessor/preprocessor_serial.h index 921cc2aa7..b4e222c1a 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_serial.h +++ b/source/preprocessor/include/preprocessor/preprocessor_serial.h @@ -1,6 +1,6 @@ /* * Preprocessor Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic header-only preprocessor metaprogramming library. * diff --git a/source/preprocessor/include/preprocessor/preprocessor_stringify.h b/source/preprocessor/include/preprocessor/preprocessor_stringify.h index 31b69da16..322b2806a 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_stringify.h +++ b/source/preprocessor/include/preprocessor/preprocessor_stringify.h @@ -1,6 +1,6 @@ /* * Preprocessor Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A generic header-only preprocessor metaprogramming library. * diff --git a/source/preprocessor/include/preprocessor/preprocessor_tuple.h b/source/preprocessor/include/preprocessor/preprocessor_tuple.h index 6783d3752..817ecd3bf 100644 --- a/source/preprocessor/include/preprocessor/preprocessor_tuple.h +++ b/source/preprocessor/include/preprocessor/preprocessor_tuple.h @@ -2,7 +2,7 @@ * Preprocessor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/preprocessor/source/preprocessor.c b/source/preprocessor/source/preprocessor.c index 4d0ae3e43..e6730f45c 100644 --- a/source/preprocessor/source/preprocessor.c +++ b/source/preprocessor/source/preprocessor.c @@ -2,7 +2,7 @@ * Preprocessor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,7 +30,7 @@ const char *preprocessor_print_info(void) { static const char preprocessor_info[] = "Preprocessor Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef PREPROCSSOR_STATIC_DEFINE "Compiled as static library type" diff --git a/source/reflect/include/reflect/reflect.h b/source/reflect/include/reflect/reflect.h index b047ae800..469e1b8c5 100644 --- a/source/reflect/include/reflect/reflect.h +++ b/source/reflect/include/reflect/reflect.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_accessor.h b/source/reflect/include/reflect/reflect_accessor.h index ddbb8f956..0dd824051 100644 --- a/source/reflect/include/reflect/reflect_accessor.h +++ b/source/reflect/include/reflect/reflect_accessor.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_async.h b/source/reflect/include/reflect/reflect_async.h index 206f08890..0ce7ed423 100644 --- a/source/reflect/include/reflect/reflect_async.h +++ b/source/reflect/include/reflect/reflect_async.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_attribute.h b/source/reflect/include/reflect/reflect_attribute.h index b9edbf362..72c1ecdae 100644 --- a/source/reflect/include/reflect/reflect_attribute.h +++ b/source/reflect/include/reflect/reflect_attribute.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_attribute_decl.h b/source/reflect/include/reflect/reflect_attribute_decl.h index 0dfc32a68..d3bb74370 100644 --- a/source/reflect/include/reflect/reflect_attribute_decl.h +++ b/source/reflect/include/reflect/reflect_attribute_decl.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_class.h b/source/reflect/include/reflect/reflect_class.h index f30a518a6..5056602f0 100644 --- a/source/reflect/include/reflect/reflect_class.h +++ b/source/reflect/include/reflect/reflect_class.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_class_decl.h b/source/reflect/include/reflect/reflect_class_decl.h index 71b53e26b..44c739433 100644 --- a/source/reflect/include/reflect/reflect_class_decl.h +++ b/source/reflect/include/reflect/reflect_class_decl.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_class_visibility.h b/source/reflect/include/reflect/reflect_class_visibility.h index 3f81c8dcb..c5641a28a 100644 --- a/source/reflect/include/reflect/reflect_class_visibility.h +++ b/source/reflect/include/reflect/reflect_class_visibility.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_constructor.h b/source/reflect/include/reflect/reflect_constructor.h index 5f965a335..cfccebdf0 100644 --- a/source/reflect/include/reflect/reflect_constructor.h +++ b/source/reflect/include/reflect/reflect_constructor.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_constructor_decl.h b/source/reflect/include/reflect/reflect_constructor_decl.h index ee3a881da..54ebace01 100644 --- a/source/reflect/include/reflect/reflect_constructor_decl.h +++ b/source/reflect/include/reflect/reflect_constructor_decl.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_context.h b/source/reflect/include/reflect/reflect_context.h index d0bf546b4..93b078246 100644 --- a/source/reflect/include/reflect/reflect_context.h +++ b/source/reflect/include/reflect/reflect_context.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_exception.h b/source/reflect/include/reflect/reflect_exception.h index 71e4b1797..89dedc55f 100644 --- a/source/reflect/include/reflect/reflect_exception.h +++ b/source/reflect/include/reflect/reflect_exception.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_function.h b/source/reflect/include/reflect/reflect_function.h index f7b19c245..ccfdfbda0 100644 --- a/source/reflect/include/reflect/reflect_function.h +++ b/source/reflect/include/reflect/reflect_function.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_future.h b/source/reflect/include/reflect/reflect_future.h index e2050d7bb..9c93fb046 100644 --- a/source/reflect/include/reflect/reflect_future.h +++ b/source/reflect/include/reflect/reflect_future.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_memory_tracker.h b/source/reflect/include/reflect/reflect_memory_tracker.h index 28e85c6d3..7aefbc224 100644 --- a/source/reflect/include/reflect/reflect_memory_tracker.h +++ b/source/reflect/include/reflect/reflect_memory_tracker.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_method.h b/source/reflect/include/reflect/reflect_method.h index 8b32a0fff..18be52a15 100644 --- a/source/reflect/include/reflect/reflect_method.h +++ b/source/reflect/include/reflect/reflect_method.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_method_decl.h b/source/reflect/include/reflect/reflect_method_decl.h index 689fa6295..a20a0f2ee 100644 --- a/source/reflect/include/reflect/reflect_method_decl.h +++ b/source/reflect/include/reflect/reflect_method_decl.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_object.h b/source/reflect/include/reflect/reflect_object.h index 648bcea54..84ab9cc79 100644 --- a/source/reflect/include/reflect/reflect_object.h +++ b/source/reflect/include/reflect/reflect_object.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_scope.h b/source/reflect/include/reflect/reflect_scope.h index 7789a8de2..8b5fe5e9d 100644 --- a/source/reflect/include/reflect/reflect_scope.h +++ b/source/reflect/include/reflect/reflect_scope.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_signature.h b/source/reflect/include/reflect/reflect_signature.h index 48fdd2e7c..e5e424460 100644 --- a/source/reflect/include/reflect/reflect_signature.h +++ b/source/reflect/include/reflect/reflect_signature.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_throwable.h b/source/reflect/include/reflect/reflect_throwable.h index 891659f28..fdc12b4fe 100644 --- a/source/reflect/include/reflect/reflect_throwable.h +++ b/source/reflect/include/reflect/reflect_throwable.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_type.h b/source/reflect/include/reflect/reflect_type.h index f282f2477..e7048a220 100644 --- a/source/reflect/include/reflect/reflect_type.h +++ b/source/reflect/include/reflect/reflect_type.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_type_id.h b/source/reflect/include/reflect/reflect_type_id.h index cc328bc85..45930c1b6 100644 --- a/source/reflect/include/reflect/reflect_type_id.h +++ b/source/reflect/include/reflect/reflect_type_id.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_value.h b/source/reflect/include/reflect/reflect_value.h index 899af46d2..208f09993 100644 --- a/source/reflect/include/reflect/reflect_value.h +++ b/source/reflect/include/reflect/reflect_value.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_value_type.h b/source/reflect/include/reflect/reflect_value_type.h index 22f9f0c80..1a84aef99 100644 --- a/source/reflect/include/reflect/reflect_value_type.h +++ b/source/reflect/include/reflect/reflect_value_type.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_value_type_cast.h b/source/reflect/include/reflect/reflect_value_type_cast.h index 7cca0a7e9..734b1d749 100644 --- a/source/reflect/include/reflect/reflect_value_type_cast.h +++ b/source/reflect/include/reflect/reflect_value_type_cast.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_value_type_demotion.h b/source/reflect/include/reflect/reflect_value_type_demotion.h index 1378b85d0..f2aad7af2 100644 --- a/source/reflect/include/reflect/reflect_value_type_demotion.h +++ b/source/reflect/include/reflect/reflect_value_type_demotion.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_value_type_id_size.h b/source/reflect/include/reflect/reflect_value_type_id_size.h index 82cd76640..88c5a1437 100644 --- a/source/reflect/include/reflect/reflect_value_type_id_size.h +++ b/source/reflect/include/reflect/reflect_value_type_id_size.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/include/reflect/reflect_value_type_promotion.h b/source/reflect/include/reflect/reflect_value_type_promotion.h index 93995abe4..21ba8da10 100644 --- a/source/reflect/include/reflect/reflect_value_type_promotion.h +++ b/source/reflect/include/reflect/reflect_value_type_promotion.h @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect.c b/source/reflect/source/reflect.c index a1db5b2aa..c8c283d11 100644 --- a/source/reflect/source/reflect.c +++ b/source/reflect/source/reflect.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ const char *reflect_print_info(void) { static const char reflect_info[] = "Reflect Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef REFLECT_STATIC_DEFINE "Compiled as static library type" diff --git a/source/reflect/source/reflect_attribute.c b/source/reflect/source/reflect_attribute.c index 477e50bb3..7f4421ff1 100644 --- a/source/reflect/source/reflect_attribute.c +++ b/source/reflect/source/reflect_attribute.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_class.c b/source/reflect/source/reflect_class.c index a4bfb6545..650318b76 100644 --- a/source/reflect/source/reflect_class.c +++ b/source/reflect/source/reflect_class.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_class_visibility.c b/source/reflect/source/reflect_class_visibility.c index 142a85a72..e32a3d504 100644 --- a/source/reflect/source/reflect_class_visibility.c +++ b/source/reflect/source/reflect_class_visibility.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_constructor.c b/source/reflect/source/reflect_constructor.c index 9aa42f9e5..bb264e1a6 100644 --- a/source/reflect/source/reflect_constructor.c +++ b/source/reflect/source/reflect_constructor.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_context.c b/source/reflect/source/reflect_context.c index 5cc64d26d..bf203b8b4 100644 --- a/source/reflect/source/reflect_context.c +++ b/source/reflect/source/reflect_context.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_exception.c b/source/reflect/source/reflect_exception.c index 8913e341c..122503121 100644 --- a/source/reflect/source/reflect_exception.c +++ b/source/reflect/source/reflect_exception.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_function.c b/source/reflect/source/reflect_function.c index cd047381a..692ca28d5 100644 --- a/source/reflect/source/reflect_function.c +++ b/source/reflect/source/reflect_function.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_future.c b/source/reflect/source/reflect_future.c index 4b8072854..e2b7ebb92 100644 --- a/source/reflect/source/reflect_future.c +++ b/source/reflect/source/reflect_future.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_memory_tracker.c b/source/reflect/source/reflect_memory_tracker.c index 09a3428c1..ba1344057 100644 --- a/source/reflect/source/reflect_memory_tracker.c +++ b/source/reflect/source/reflect_memory_tracker.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_method.c b/source/reflect/source/reflect_method.c index c5bece5e5..7f47a2b41 100644 --- a/source/reflect/source/reflect_method.c +++ b/source/reflect/source/reflect_method.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_object.c b/source/reflect/source/reflect_object.c index 6e0aa35b6..6d64cbcd9 100644 --- a/source/reflect/source/reflect_object.c +++ b/source/reflect/source/reflect_object.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_scope.c b/source/reflect/source/reflect_scope.c index f995307f6..f7d82f35c 100644 --- a/source/reflect/source/reflect_scope.c +++ b/source/reflect/source/reflect_scope.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_signature.c b/source/reflect/source/reflect_signature.c index 6b2f2523d..94536d8d1 100644 --- a/source/reflect/source/reflect_signature.c +++ b/source/reflect/source/reflect_signature.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_throwable.c b/source/reflect/source/reflect_throwable.c index b5e5c4c6e..56929e0ed 100644 --- a/source/reflect/source/reflect_throwable.c +++ b/source/reflect/source/reflect_throwable.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_type.c b/source/reflect/source/reflect_type.c index c0c70cb9c..ea46ed69e 100644 --- a/source/reflect/source/reflect_type.c +++ b/source/reflect/source/reflect_type.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_type_id.c b/source/reflect/source/reflect_type_id.c index 189120a4e..1b5f99d20 100644 --- a/source/reflect/source/reflect_type_id.c +++ b/source/reflect/source/reflect_type_id.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_value.c b/source/reflect/source/reflect_value.c index 82bba9450..6d69506dc 100644 --- a/source/reflect/source/reflect_value.c +++ b/source/reflect/source/reflect_value.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_value_type.c b/source/reflect/source/reflect_value_type.c index 422080fdc..537e2a805 100644 --- a/source/reflect/source/reflect_value_type.c +++ b/source/reflect/source/reflect_value_type.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_value_type_cast.c b/source/reflect/source/reflect_value_type_cast.c index fa0d81235..126ddcd6e 100644 --- a/source/reflect/source/reflect_value_type_cast.c +++ b/source/reflect/source/reflect_value_type_cast.c @@ -1,6 +1,6 @@ /* * Reflect Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A library for provide reflection and metadata representation. * diff --git a/source/reflect/source/reflect_value_type_demotion.c b/source/reflect/source/reflect_value_type_demotion.c index a3cf5187f..01f25a038 100644 --- a/source/reflect/source/reflect_value_type_demotion.c +++ b/source/reflect/source/reflect_value_type_demotion.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_value_type_id_size.c b/source/reflect/source/reflect_value_type_id_size.c index 09632ecbc..2ad67dc0b 100644 --- a/source/reflect/source/reflect_value_type_id_size.c +++ b/source/reflect/source/reflect_value_type_id_size.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/reflect/source/reflect_value_type_promotion.c b/source/reflect/source/reflect_value_type_promotion.c index 57de9e521..f7d255028 100644 --- a/source/reflect/source/reflect_value_type_promotion.c +++ b/source/reflect/source/reflect_value_type_promotion.c @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/scripts/c/cmake/CProject.cmake b/source/scripts/c/cmake/CProject.cmake index 317cb7009..473c00be6 100644 --- a/source/scripts/c/cmake/CProject.cmake +++ b/source/scripts/c/cmake/CProject.cmake @@ -2,7 +2,7 @@ # C project generator by Parra Studios # Generates a C project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/c/cmake/CProject.cmake.in b/source/scripts/c/cmake/CProject.cmake.in index c9a4c4ab0..7ebe35208 100644 --- a/source/scripts/c/cmake/CProject.cmake.in +++ b/source/scripts/c/cmake/CProject.cmake.in @@ -2,7 +2,7 @@ # C project generator by Parra Studios # Generates a C project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/cobol/cmake/CobolProject.cmake b/source/scripts/cobol/cmake/CobolProject.cmake index c01e4d09c..0e860b289 100644 --- a/source/scripts/cobol/cmake/CobolProject.cmake +++ b/source/scripts/cobol/cmake/CobolProject.cmake @@ -2,7 +2,7 @@ # Cobol project generator by Parra Studios # Generates a Cobol project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/cobol/cmake/CobolProject.cmake.in b/source/scripts/cobol/cmake/CobolProject.cmake.in index 9725931a1..5392b9d53 100644 --- a/source/scripts/cobol/cmake/CobolProject.cmake.in +++ b/source/scripts/cobol/cmake/CobolProject.cmake.in @@ -2,7 +2,7 @@ # Cobol project generator by Parra Studios # Generates a Cobol project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/csharp/cmake/CSharpProject.cmake b/source/scripts/csharp/cmake/CSharpProject.cmake index cbb06b2f5..add3f9a83 100644 --- a/source/scripts/csharp/cmake/CSharpProject.cmake +++ b/source/scripts/csharp/cmake/CSharpProject.cmake @@ -2,7 +2,7 @@ # CSharp project generator by Parra Studios # Generates a csharp project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/csharp/cmake/CSharpProject.cmake.in b/source/scripts/csharp/cmake/CSharpProject.cmake.in index cf721121c..d405caf5d 100644 --- a/source/scripts/csharp/cmake/CSharpProject.cmake.in +++ b/source/scripts/csharp/cmake/CSharpProject.cmake.in @@ -2,7 +2,7 @@ # CSharp project generator by Parra Studios # Generates a csharp project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/csharp/cmake/CSharpProject.json.in b/source/scripts/csharp/cmake/CSharpProject.json.in index 342df74d8..0a0ae67d4 100644 --- a/source/scripts/csharp/cmake/CSharpProject.json.in +++ b/source/scripts/csharp/cmake/CSharpProject.json.in @@ -3,7 +3,7 @@ # CSharp project generator by Parra Studios # Generates a csharp project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/extension/sum_extension/include/sum_extension/sum_extension.h b/source/scripts/extension/sum_extension/include/sum_extension/sum_extension.h index 41cdf037e..06585a3b7 100644 --- a/source/scripts/extension/sum_extension/include/sum_extension/sum_extension.h +++ b/source/scripts/extension/sum_extension/include/sum_extension/sum_extension.h @@ -2,7 +2,7 @@ * Extension Library by Parra Studios * An extension for sum numbers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/scripts/extension/sum_extension/source/sum_extension.cpp b/source/scripts/extension/sum_extension/source/sum_extension.cpp index c324a4715..aaa02ed2e 100644 --- a/source/scripts/extension/sum_extension/source/sum_extension.cpp +++ b/source/scripts/extension/sum_extension/source/sum_extension.cpp @@ -2,7 +2,7 @@ * Extension Library by Parra Studios * An extension for sum numbers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/scripts/file/cmake/FileProject.cmake b/source/scripts/file/cmake/FileProject.cmake index 5a4b2f5fa..3ee6aedaa 100644 --- a/source/scripts/file/cmake/FileProject.cmake +++ b/source/scripts/file/cmake/FileProject.cmake @@ -2,7 +2,7 @@ # File project generator by Parra Studios # Generates a file project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/file/cmake/FileProject.cmake.in b/source/scripts/file/cmake/FileProject.cmake.in index ebb08f3f3..7a4129442 100644 --- a/source/scripts/file/cmake/FileProject.cmake.in +++ b/source/scripts/file/cmake/FileProject.cmake.in @@ -2,7 +2,7 @@ # File project generator by Parra Studios # Generates a file project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/java/cmake/JavaJarProject.cmake.in b/source/scripts/java/cmake/JavaJarProject.cmake.in index da7665038..03bad21cd 100644 --- a/source/scripts/java/cmake/JavaJarProject.cmake.in +++ b/source/scripts/java/cmake/JavaJarProject.cmake.in @@ -2,7 +2,7 @@ # Java project generator by Parra Studios # Generates a java project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/java/cmake/JavaProject.cmake b/source/scripts/java/cmake/JavaProject.cmake index aa61d1439..46e4b0c30 100644 --- a/source/scripts/java/cmake/JavaProject.cmake +++ b/source/scripts/java/cmake/JavaProject.cmake @@ -2,7 +2,7 @@ # Java project generator by Parra Studios # Generates a java project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/java/cmake/JavaProject.cmake.in b/source/scripts/java/cmake/JavaProject.cmake.in index d3257a4a0..5d2472b85 100644 --- a/source/scripts/java/cmake/JavaProject.cmake.in +++ b/source/scripts/java/cmake/JavaProject.cmake.in @@ -2,7 +2,7 @@ # Java project generator by Parra Studios # Generates a java project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/javascript/cmake/JavaScriptProject.cmake b/source/scripts/javascript/cmake/JavaScriptProject.cmake index da0f6447e..f7dd907d3 100644 --- a/source/scripts/javascript/cmake/JavaScriptProject.cmake +++ b/source/scripts/javascript/cmake/JavaScriptProject.cmake @@ -2,7 +2,7 @@ # JavaScript project generator by Parra Studios # Generates a javascript project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/javascript/cmake/JavaScriptProject.cmake.in b/source/scripts/javascript/cmake/JavaScriptProject.cmake.in index c7f5a86bb..d0da4daae 100644 --- a/source/scripts/javascript/cmake/JavaScriptProject.cmake.in +++ b/source/scripts/javascript/cmake/JavaScriptProject.cmake.in @@ -2,7 +2,7 @@ # JavaScript project generator by Parra Studios # Generates a javascript project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/javascript/cmake/JavaScriptProject.json.in b/source/scripts/javascript/cmake/JavaScriptProject.json.in index c010d942d..ea997c6ec 100644 --- a/source/scripts/javascript/cmake/JavaScriptProject.json.in +++ b/source/scripts/javascript/cmake/JavaScriptProject.json.in @@ -3,7 +3,7 @@ # JavaScript project generator by Parra Studios # Generates a javascript project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/julia/cmake/JuliaProject.cmake b/source/scripts/julia/cmake/JuliaProject.cmake index 08224547d..770e8cfc3 100644 --- a/source/scripts/julia/cmake/JuliaProject.cmake +++ b/source/scripts/julia/cmake/JuliaProject.cmake @@ -2,7 +2,7 @@ # Julia project generator by Parra Studios # Generates a Julia project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/julia/cmake/JuliaProject.cmake.in b/source/scripts/julia/cmake/JuliaProject.cmake.in index 789d6434d..95aa5c339 100644 --- a/source/scripts/julia/cmake/JuliaProject.cmake.in +++ b/source/scripts/julia/cmake/JuliaProject.cmake.in @@ -2,7 +2,7 @@ # Julia project generator by Parra Studios # Generates a Julia project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/llvm/cmake/LLVMProject.cmake b/source/scripts/llvm/cmake/LLVMProject.cmake index 5c5d702e4..7f2a70d33 100644 --- a/source/scripts/llvm/cmake/LLVMProject.cmake +++ b/source/scripts/llvm/cmake/LLVMProject.cmake @@ -2,7 +2,7 @@ # LLVM project generator by Parra Studios # Generates a LLVM project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/llvm/cmake/LLVMProject.cmake.in b/source/scripts/llvm/cmake/LLVMProject.cmake.in index 07f1a83cb..9a6ad7770 100644 --- a/source/scripts/llvm/cmake/LLVMProject.cmake.in +++ b/source/scripts/llvm/cmake/LLVMProject.cmake.in @@ -2,7 +2,7 @@ # LLVM project generator by Parra Studios # Generates a LLVM project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/lua/cmake/LuaProject.cmake b/source/scripts/lua/cmake/LuaProject.cmake index 16a5f91ce..da4ee1247 100644 --- a/source/scripts/lua/cmake/LuaProject.cmake +++ b/source/scripts/lua/cmake/LuaProject.cmake @@ -2,7 +2,7 @@ # Lua project generator by Parra Studios # Generates a lua project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/lua/cmake/LuaProject.cmake.in b/source/scripts/lua/cmake/LuaProject.cmake.in index b97c82402..8bc5b2eec 100644 --- a/source/scripts/lua/cmake/LuaProject.cmake.in +++ b/source/scripts/lua/cmake/LuaProject.cmake.in @@ -2,7 +2,7 @@ # Lua project generator by Parra Studios # Generates a Lua project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/node/cmake/NodeJSProject.cmake b/source/scripts/node/cmake/NodeJSProject.cmake index 90f34fab2..60a093c88 100644 --- a/source/scripts/node/cmake/NodeJSProject.cmake +++ b/source/scripts/node/cmake/NodeJSProject.cmake @@ -2,7 +2,7 @@ # NodeJS project generator by Parra Studios # Generates a nodejs project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/node/cmake/NodeJSProject.cmake.in b/source/scripts/node/cmake/NodeJSProject.cmake.in index 190d3e7dd..f9c3d86a6 100644 --- a/source/scripts/node/cmake/NodeJSProject.cmake.in +++ b/source/scripts/node/cmake/NodeJSProject.cmake.in @@ -2,7 +2,7 @@ # NodeJS project generator by Parra Studios # Generates a NodeJS project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/node/cmake/NodeJSProject.json.in b/source/scripts/node/cmake/NodeJSProject.json.in index 3d24af71c..980b150d3 100644 --- a/source/scripts/node/cmake/NodeJSProject.json.in +++ b/source/scripts/node/cmake/NodeJSProject.json.in @@ -3,7 +3,7 @@ # NodeJS project generator by Parra Studios # Generates a nodejs project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/python/cmake/PythonProject.cmake b/source/scripts/python/cmake/PythonProject.cmake index be6b95a02..ae14b9f78 100644 --- a/source/scripts/python/cmake/PythonProject.cmake +++ b/source/scripts/python/cmake/PythonProject.cmake @@ -2,7 +2,7 @@ # Python project generator by Parra Studios # Generates a python project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/python/cmake/PythonProject.cmake.in b/source/scripts/python/cmake/PythonProject.cmake.in index 2bdaffe3e..b423832f8 100644 --- a/source/scripts/python/cmake/PythonProject.cmake.in +++ b/source/scripts/python/cmake/PythonProject.cmake.in @@ -2,7 +2,7 @@ # Python project generator by Parra Studios # Generates a python project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/python/cmake/PythonProject.py.in b/source/scripts/python/cmake/PythonProject.py.in index ef81bafd3..cba8a94de 100644 --- a/source/scripts/python/cmake/PythonProject.py.in +++ b/source/scripts/python/cmake/PythonProject.py.in @@ -4,7 +4,7 @@ # Python project generator by Parra Studios # Generates a python project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/python/rsasample/source/rsasample.py b/source/scripts/python/rsasample/source/rsasample.py index 8052f19f6..b1aa868c7 100644 --- a/source/scripts/python/rsasample/source/rsasample.py +++ b/source/scripts/python/rsasample/source/rsasample.py @@ -4,7 +4,7 @@ # RSA String Encriptation Decriptation Sample by Parra Studios # Python RSA encriptation decriptation sample. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/python/rsasample/source/sample/rsa_strings.py b/source/scripts/python/rsasample/source/sample/rsa_strings.py index d0a9e27ff..80591575d 100644 --- a/source/scripts/python/rsasample/source/sample/rsa_strings.py +++ b/source/scripts/python/rsasample/source/sample/rsa_strings.py @@ -4,7 +4,7 @@ # RSA String Encriptation Decriptation Sample by Parra Studios # Python RSA encriptation decriptation sample. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/rpc/cmake/RPCProject.cmake b/source/scripts/rpc/cmake/RPCProject.cmake index 583411b9c..38f4bac0c 100644 --- a/source/scripts/rpc/cmake/RPCProject.cmake +++ b/source/scripts/rpc/cmake/RPCProject.cmake @@ -2,7 +2,7 @@ # RPC project generator by Parra Studios # Generates a rpc project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/rpc/cmake/RPCProject.cmake.in b/source/scripts/rpc/cmake/RPCProject.cmake.in index 559ed14fe..0a5b9e215 100644 --- a/source/scripts/rpc/cmake/RPCProject.cmake.in +++ b/source/scripts/rpc/cmake/RPCProject.cmake.in @@ -2,7 +2,7 @@ # RPC project generator by Parra Studios # Generates a RPC project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/ruby/cmake/RubyProject.cmake b/source/scripts/ruby/cmake/RubyProject.cmake index fdda48f20..bfa73a1f4 100644 --- a/source/scripts/ruby/cmake/RubyProject.cmake +++ b/source/scripts/ruby/cmake/RubyProject.cmake @@ -2,7 +2,7 @@ # Ruby project generator by Parra Studios # Generates a ruby project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/ruby/cmake/RubyProject.cmake.in b/source/scripts/ruby/cmake/RubyProject.cmake.in index 257c8db4c..7c81d8203 100644 --- a/source/scripts/ruby/cmake/RubyProject.cmake.in +++ b/source/scripts/ruby/cmake/RubyProject.cmake.in @@ -2,7 +2,7 @@ # Ruby project generator by Parra Studios # Generates a ruby project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/ruby/cmake/RubyProject.rb.in b/source/scripts/ruby/cmake/RubyProject.rb.in index 64a1dc826..66fe0cf54 100644 --- a/source/scripts/ruby/cmake/RubyProject.rb.in +++ b/source/scripts/ruby/cmake/RubyProject.rb.in @@ -4,7 +4,7 @@ # Ruby project generator by Parra Studios # Generates a ruby project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/rust/cmake/RustProject.cmake b/source/scripts/rust/cmake/RustProject.cmake index 859dd6d3e..af0e6179c 100644 --- a/source/scripts/rust/cmake/RustProject.cmake +++ b/source/scripts/rust/cmake/RustProject.cmake @@ -2,7 +2,7 @@ # Rust project generator by Parra Studios # Generates a Rust project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/rust/cmake/RustProject.cmake.in b/source/scripts/rust/cmake/RustProject.cmake.in index e46e5ba62..c1a52cef5 100644 --- a/source/scripts/rust/cmake/RustProject.cmake.in +++ b/source/scripts/rust/cmake/RustProject.cmake.in @@ -2,7 +2,7 @@ # WebAssembly project generator by Parra Studios # Generates a WebAssembly project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/typescript/cmake/TypeScriptProject.cmake b/source/scripts/typescript/cmake/TypeScriptProject.cmake index 5483341d8..7d25517ba 100644 --- a/source/scripts/typescript/cmake/TypeScriptProject.cmake +++ b/source/scripts/typescript/cmake/TypeScriptProject.cmake @@ -2,7 +2,7 @@ # TypeScript project generator by Parra Studios # Generates a typescript project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/typescript/cmake/TypeScriptProject.cmake.in b/source/scripts/typescript/cmake/TypeScriptProject.cmake.in index c370f8173..b07786e8c 100644 --- a/source/scripts/typescript/cmake/TypeScriptProject.cmake.in +++ b/source/scripts/typescript/cmake/TypeScriptProject.cmake.in @@ -2,7 +2,7 @@ # TypeScript project generator by Parra Studios # Generates a typescript project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/typescript/cmake/TypeScriptProject.json.in b/source/scripts/typescript/cmake/TypeScriptProject.json.in index 49475859e..f609c81ec 100644 --- a/source/scripts/typescript/cmake/TypeScriptProject.json.in +++ b/source/scripts/typescript/cmake/TypeScriptProject.json.in @@ -3,7 +3,7 @@ # TypeScript project generator by Parra Studios # Generates a typescript project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/wasm/cmake/WasmProject.cmake b/source/scripts/wasm/cmake/WasmProject.cmake index 19800289a..776675b04 100644 --- a/source/scripts/wasm/cmake/WasmProject.cmake +++ b/source/scripts/wasm/cmake/WasmProject.cmake @@ -2,7 +2,7 @@ # WebAssembly project generator by Parra Studios # Generates a WebAssembly project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/scripts/wasm/cmake/WasmProject.cmake.in b/source/scripts/wasm/cmake/WasmProject.cmake.in index 1dcb6f476..b3a3c0265 100644 --- a/source/scripts/wasm/cmake/WasmProject.cmake.in +++ b/source/scripts/wasm/cmake/WasmProject.cmake.in @@ -2,7 +2,7 @@ # WebAssembly project generator by Parra Studios # Generates a WebAssembly project embedded into CMake. # -# Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia # # 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/source/serial/include/serial/serial.h b/source/serial/include/serial/serial.h index 09a244f04..720640c4c 100644 --- a/source/serial/include/serial/serial.h +++ b/source/serial/include/serial/serial.h @@ -1,6 +1,6 @@ /* * Serial Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple serialization and deserialization formats. * diff --git a/source/serial/include/serial/serial_handle.h b/source/serial/include/serial/serial_handle.h index 5747556b9..fa4bdc66f 100644 --- a/source/serial/include/serial/serial_handle.h +++ b/source/serial/include/serial/serial_handle.h @@ -2,7 +2,7 @@ * Serial Library by Parra Studios * A cross-platform library for managing multiple serialization and deserialization formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/serial/include/serial/serial_interface.h b/source/serial/include/serial/serial_interface.h index fc26b3f84..e06b55a16 100644 --- a/source/serial/include/serial/serial_interface.h +++ b/source/serial/include/serial/serial_interface.h @@ -1,6 +1,6 @@ /* * Serial Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple serialization and deserialization formats. * diff --git a/source/serial/source/serial.c b/source/serial/source/serial.c index 37612cf18..74bbb0186 100644 --- a/source/serial/source/serial.c +++ b/source/serial/source/serial.c @@ -1,6 +1,6 @@ /* * Serial Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple serialization and deserialization formats. * @@ -144,7 +144,7 @@ const char *serial_print_info(void) { static const char serial_info[] = "Serial Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef SERIAL_STATIC_DEFINE "Compiled as static library type" diff --git a/source/serials/metacall_serial/include/metacall_serial/metacall_serial.h b/source/serials/metacall_serial/include/metacall_serial/metacall_serial.h index 49bc4e81d..5d4f2e119 100644 --- a/source/serials/metacall_serial/include/metacall_serial/metacall_serial.h +++ b/source/serials/metacall_serial/include/metacall_serial/metacall_serial.h @@ -2,7 +2,7 @@ * Serial Library by Parra Studios * A cross-platform library for managing multiple serialization and deserialization formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl.h b/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl.h index 489c4b31a..541fe4bd6 100644 --- a/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl.h +++ b/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl.h @@ -1,6 +1,6 @@ /* * Serial Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple serialization and deserialization formats. * diff --git a/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl_deserialize.h b/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl_deserialize.h index dc9091009..6f3d0a3f0 100644 --- a/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl_deserialize.h +++ b/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl_deserialize.h @@ -2,7 +2,7 @@ * Serial Library by Parra Studios * A cross-platform library for managing multiple serialization and deserialization formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl_serialize.h b/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl_serialize.h index 5ea2d8e37..dbe14b590 100644 --- a/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl_serialize.h +++ b/source/serials/metacall_serial/include/metacall_serial/metacall_serial_impl_serialize.h @@ -2,7 +2,7 @@ * Serial Library by Parra Studios * A cross-platform library for managing multiple serialization and deserialization formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/serials/metacall_serial/source/metacall_serial.c b/source/serials/metacall_serial/source/metacall_serial.c index 884b8ca8e..2bf699644 100644 --- a/source/serials/metacall_serial/source/metacall_serial.c +++ b/source/serials/metacall_serial/source/metacall_serial.c @@ -1,6 +1,6 @@ /* * Serial Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple serialization and deserialization formats. * @@ -32,7 +32,7 @@ const char *metacall_serial_print_info(void) { static const char metacall_serial_info[] = "MetaCall Native Format Serial Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef METACALL_SERIAL_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/serials/metacall_serial/source/metacall_serial_impl.c b/source/serials/metacall_serial/source/metacall_serial_impl.c index 20716d0d6..1c69c47c6 100644 --- a/source/serials/metacall_serial/source/metacall_serial_impl.c +++ b/source/serials/metacall_serial/source/metacall_serial_impl.c @@ -1,6 +1,6 @@ /* * Serial Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple serialization and deserialization formats. * diff --git a/source/serials/metacall_serial/source/metacall_serial_impl_deserialize.c b/source/serials/metacall_serial/source/metacall_serial_impl_deserialize.c index c709105f7..2487545d7 100644 --- a/source/serials/metacall_serial/source/metacall_serial_impl_deserialize.c +++ b/source/serials/metacall_serial/source/metacall_serial_impl_deserialize.c @@ -2,7 +2,7 @@ * Serial Library by Parra Studios * A cross-platform library for managing multiple serialization and deserialization formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/serials/metacall_serial/source/metacall_serial_impl_serialize.c b/source/serials/metacall_serial/source/metacall_serial_impl_serialize.c index 062d80a3d..93852bbe6 100644 --- a/source/serials/metacall_serial/source/metacall_serial_impl_serialize.c +++ b/source/serials/metacall_serial/source/metacall_serial_impl_serialize.c @@ -2,7 +2,7 @@ * Serial Library by Parra Studios * A cross-platform library for managing multiple serialization and deserialization formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/serials/rapid_json_serial/include/rapid_json_serial/rapid_json_serial.h b/source/serials/rapid_json_serial/include/rapid_json_serial/rapid_json_serial.h index bb8237a99..51e32e3b8 100644 --- a/source/serials/rapid_json_serial/include/rapid_json_serial/rapid_json_serial.h +++ b/source/serials/rapid_json_serial/include/rapid_json_serial/rapid_json_serial.h @@ -2,7 +2,7 @@ * Serial Library by Parra Studios * A cross-platform library for managing multiple serialization and deserialization formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/serials/rapid_json_serial/include/rapid_json_serial/rapid_json_serial_impl.h b/source/serials/rapid_json_serial/include/rapid_json_serial/rapid_json_serial_impl.h index 271d4526c..936bcd34d 100644 --- a/source/serials/rapid_json_serial/include/rapid_json_serial/rapid_json_serial_impl.h +++ b/source/serials/rapid_json_serial/include/rapid_json_serial/rapid_json_serial_impl.h @@ -2,7 +2,7 @@ * Serial Library by Parra Studios * A cross-platform library for managing multiple serialization and deserialization formats. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/serials/rapid_json_serial/source/rapid_json_serial.c b/source/serials/rapid_json_serial/source/rapid_json_serial.c index d14f7c160..12760dca9 100644 --- a/source/serials/rapid_json_serial/source/rapid_json_serial.c +++ b/source/serials/rapid_json_serial/source/rapid_json_serial.c @@ -1,6 +1,6 @@ /* * Serial Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple serialization and deserialization formats. * @@ -32,7 +32,7 @@ const char *rapid_json_serial_print_info(void) { static const char rapid_json_serial_info[] = "Rapid JSON Serial Plugin " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef RAPID_JSON_SERIAL_STATIC_DEFINE "Compiled as static library type\n" diff --git a/source/serials/rapid_json_serial/source/rapid_json_serial_impl.cpp b/source/serials/rapid_json_serial/source/rapid_json_serial_impl.cpp index 8cc4bf4c7..f7627e850 100644 --- a/source/serials/rapid_json_serial/source/rapid_json_serial_impl.cpp +++ b/source/serials/rapid_json_serial/source/rapid_json_serial_impl.cpp @@ -1,6 +1,6 @@ /* * Serial Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A cross-platform library for managing multiple serialization and deserialization formats. * diff --git a/source/tests/adt_map_test/source/adt_map_test.cpp b/source/tests/adt_map_test/source/adt_map_test.cpp index 80663bad9..72124f34d 100644 --- a/source/tests/adt_map_test/source/adt_map_test.cpp +++ b/source/tests/adt_map_test/source/adt_map_test.cpp @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/adt_map_test/source/main.cpp b/source/tests/adt_map_test/source/main.cpp index 6d87a8b6c..1888b3214 100644 --- a/source/tests/adt_map_test/source/main.cpp +++ b/source/tests/adt_map_test/source/main.cpp @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/adt_set_test/source/adt_set_test.cpp b/source/tests/adt_set_test/source/adt_set_test.cpp index c412ed041..98edb9c55 100644 --- a/source/tests/adt_set_test/source/adt_set_test.cpp +++ b/source/tests/adt_set_test/source/adt_set_test.cpp @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/adt_set_test/source/main.cpp b/source/tests/adt_set_test/source/main.cpp index 6d87a8b6c..1888b3214 100644 --- a/source/tests/adt_set_test/source/main.cpp +++ b/source/tests/adt_set_test/source/main.cpp @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/adt_trie_test/source/adt_trie_test.cpp b/source/tests/adt_trie_test/source/adt_trie_test.cpp index 6240a32a8..86eb08760 100644 --- a/source/tests/adt_trie_test/source/adt_trie_test.cpp +++ b/source/tests/adt_trie_test/source/adt_trie_test.cpp @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/adt_trie_test/source/main.cpp b/source/tests/adt_trie_test/source/main.cpp index 6d87a8b6c..1888b3214 100644 --- a/source/tests/adt_trie_test/source/main.cpp +++ b/source/tests/adt_trie_test/source/main.cpp @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/adt_vector_test/source/adt_vector_test.cpp b/source/tests/adt_vector_test/source/adt_vector_test.cpp index d210dfb8c..a33447137 100644 --- a/source/tests/adt_vector_test/source/adt_vector_test.cpp +++ b/source/tests/adt_vector_test/source/adt_vector_test.cpp @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/adt_vector_test/source/main.cpp b/source/tests/adt_vector_test/source/main.cpp index 6d87a8b6c..1888b3214 100644 --- a/source/tests/adt_vector_test/source/main.cpp +++ b/source/tests/adt_vector_test/source/main.cpp @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/configuration_test/source/configuration_test.cpp b/source/tests/configuration_test/source/configuration_test.cpp index 3604ecbbb..657f8dff2 100644 --- a/source/tests/configuration_test/source/configuration_test.cpp +++ b/source/tests/configuration_test/source/configuration_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/configuration_test/source/main.cpp b/source/tests/configuration_test/source/main.cpp index 0557ed9c2..4e6c7d262 100644 --- a/source/tests/configuration_test/source/main.cpp +++ b/source/tests/configuration_test/source/main.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/detour_test/source/detour_test.cpp b/source/tests/detour_test/source/detour_test.cpp index abfd4ce59..3dca76491 100644 --- a/source/tests/detour_test/source/detour_test.cpp +++ b/source/tests/detour_test/source/detour_test.cpp @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/detour_test/source/main.cpp b/source/tests/detour_test/source/main.cpp index 53e0b4be4..d678d80ae 100644 --- a/source/tests/detour_test/source/main.cpp +++ b/source/tests/detour_test/source/main.cpp @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/dynlink_test/source/dynlink_test.cpp b/source/tests/dynlink_test/source/dynlink_test.cpp index 5456e130c..dc77a7c6b 100644 --- a/source/tests/dynlink_test/source/dynlink_test.cpp +++ b/source/tests/dynlink_test/source/dynlink_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/dynlink_test/source/main.cpp b/source/tests/dynlink_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/dynlink_test/source/main.cpp +++ b/source/tests/dynlink_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/environment_test/source/environment_test.cpp b/source/tests/environment_test/source/environment_test.cpp index 77dcf867f..4b484a242 100644 --- a/source/tests/environment_test/source/environment_test.cpp +++ b/source/tests/environment_test/source/environment_test.cpp @@ -2,7 +2,7 @@ * Format Library by Parra Studios * A cross-platform library for supporting platform specific environment features. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/environment_test/source/main.cpp b/source/tests/environment_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/environment_test/source/main.cpp +++ b/source/tests/environment_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/log_custom_test/source/log_custom_test.cpp b/source/tests/log_custom_test/source/log_custom_test.cpp index 59d1e251c..98af5d1b0 100644 --- a/source/tests/log_custom_test/source/log_custom_test.cpp +++ b/source/tests/log_custom_test/source/log_custom_test.cpp @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/log_custom_test/source/main.cpp b/source/tests/log_custom_test/source/main.cpp index 53e0b4be4..d678d80ae 100644 --- a/source/tests/log_custom_test/source/main.cpp +++ b/source/tests/log_custom_test/source/main.cpp @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/log_test/source/log_test.cpp b/source/tests/log_test/source/log_test.cpp index f88c32dfc..8f2939f74 100644 --- a/source/tests/log_test/source/log_test.cpp +++ b/source/tests/log_test/source/log_test.cpp @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/log_test/source/main.cpp b/source/tests/log_test/source/main.cpp index 53e0b4be4..d678d80ae 100644 --- a/source/tests/log_test/source/main.cpp +++ b/source/tests/log_test/source/main.cpp @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_backtrace_plugin_test/source/main.cpp b/source/tests/metacall_backtrace_plugin_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_backtrace_plugin_test/source/main.cpp +++ b/source/tests/metacall_backtrace_plugin_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_backtrace_plugin_test/source/metacall_backtrace_plugin_test.cpp b/source/tests/metacall_backtrace_plugin_test/source/metacall_backtrace_plugin_test.cpp index d06acd721..900c8b0a2 100644 --- a/source/tests/metacall_backtrace_plugin_test/source/metacall_backtrace_plugin_test.cpp +++ b/source/tests/metacall_backtrace_plugin_test/source/metacall_backtrace_plugin_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_c_lib_test/source/main.cpp b/source/tests/metacall_c_lib_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_c_lib_test/source/main.cpp +++ b/source/tests/metacall_c_lib_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_c_lib_test/source/metacall_c_lib_test.cpp b/source/tests/metacall_c_lib_test/source/metacall_c_lib_test.cpp index 3848afaba..bd658b3d8 100644 --- a/source/tests/metacall_c_lib_test/source/metacall_c_lib_test.cpp +++ b/source/tests/metacall_c_lib_test/source/metacall_c_lib_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_c_test/source/main.cpp b/source/tests/metacall_c_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_c_test/source/main.cpp +++ b/source/tests/metacall_c_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_c_test/source/metacall_c_test.cpp b/source/tests/metacall_c_test/source/metacall_c_test.cpp index 9316a4b37..2aff37a27 100644 --- a/source/tests/metacall_c_test/source/metacall_c_test.cpp +++ b/source/tests/metacall_c_test/source/metacall_c_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_callback_complex_test/source/main.cpp b/source/tests/metacall_callback_complex_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_callback_complex_test/source/main.cpp +++ b/source/tests/metacall_callback_complex_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_callback_complex_test/source/metacall_callback_complex_test.cpp b/source/tests/metacall_callback_complex_test/source/metacall_callback_complex_test.cpp index c7b5d5bef..e608f1dcd 100644 --- a/source/tests/metacall_callback_complex_test/source/metacall_callback_complex_test.cpp +++ b/source/tests/metacall_callback_complex_test/source/metacall_callback_complex_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cast_test/source/main.cpp b/source/tests/metacall_cast_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_cast_test/source/main.cpp +++ b/source/tests/metacall_cast_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cast_test/source/metacall_cast_test.cpp b/source/tests/metacall_cast_test/source/metacall_cast_test.cpp index ca6158b02..12cd28065 100644 --- a/source/tests/metacall_cast_test/source/metacall_cast_test.cpp +++ b/source/tests/metacall_cast_test/source/metacall_cast_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_clear_test/source/main.cpp b/source/tests/metacall_clear_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_clear_test/source/main.cpp +++ b/source/tests/metacall_clear_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_clear_test/source/metacall_clear_test.cpp b/source/tests/metacall_clear_test/source/metacall_clear_test.cpp index 6be598577..8c59a5bab 100644 --- a/source/tests/metacall_clear_test/source/metacall_clear_test.cpp +++ b/source/tests/metacall_clear_test/source/metacall_clear_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cli_core_plugin_await_test/source/main.cpp b/source/tests/metacall_cli_core_plugin_await_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_cli_core_plugin_await_test/source/main.cpp +++ b/source/tests/metacall_cli_core_plugin_await_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cli_core_plugin_await_test/source/metacall_cli_core_plugin_await_test.cpp b/source/tests/metacall_cli_core_plugin_await_test/source/metacall_cli_core_plugin_await_test.cpp index 5b276e812..add0680cc 100644 --- a/source/tests/metacall_cli_core_plugin_await_test/source/metacall_cli_core_plugin_await_test.cpp +++ b/source/tests/metacall_cli_core_plugin_await_test/source/metacall_cli_core_plugin_await_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cli_core_plugin_test/source/main.cpp b/source/tests/metacall_cli_core_plugin_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_cli_core_plugin_test/source/main.cpp +++ b/source/tests/metacall_cli_core_plugin_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cli_core_plugin_test/source/metacall_cli_core_plugin_test.cpp b/source/tests/metacall_cli_core_plugin_test/source/metacall_cli_core_plugin_test.cpp index 49e6ae265..8803cc934 100644 --- a/source/tests/metacall_cli_core_plugin_test/source/metacall_cli_core_plugin_test.cpp +++ b/source/tests/metacall_cli_core_plugin_test/source/metacall_cli_core_plugin_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cobol_test/source/main.cpp b/source/tests/metacall_cobol_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_cobol_test/source/main.cpp +++ b/source/tests/metacall_cobol_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cobol_test/source/metacall_cobol_test.cpp b/source/tests/metacall_cobol_test/source/metacall_cobol_test.cpp index 5178d7f1a..7158b3bb6 100644 --- a/source/tests/metacall_cobol_test/source/metacall_cobol_test.cpp +++ b/source/tests/metacall_cobol_test/source/metacall_cobol_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_configuration_default_test/source/main.cpp b/source/tests/metacall_configuration_default_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_configuration_default_test/source/main.cpp +++ b/source/tests/metacall_configuration_default_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_configuration_default_test/source/metacall_configuration_default_test.cpp b/source/tests/metacall_configuration_default_test/source/metacall_configuration_default_test.cpp index 97b85c663..af04b08dc 100644 --- a/source/tests/metacall_configuration_default_test/source/metacall_configuration_default_test.cpp +++ b/source/tests/metacall_configuration_default_test/source/metacall_configuration_default_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_configuration_exec_path_test/source/main.cpp b/source/tests/metacall_configuration_exec_path_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_configuration_exec_path_test/source/main.cpp +++ b/source/tests/metacall_configuration_exec_path_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_configuration_exec_path_test/source/metacall_configuration_exec_path_test.cpp b/source/tests/metacall_configuration_exec_path_test/source/metacall_configuration_exec_path_test.cpp index a882853e6..48d998782 100644 --- a/source/tests/metacall_configuration_exec_path_test/source/metacall_configuration_exec_path_test.cpp +++ b/source/tests/metacall_configuration_exec_path_test/source/metacall_configuration_exec_path_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cs_test/include/metacall-cs-test/environment.hpp b/source/tests/metacall_cs_test/include/metacall-cs-test/environment.hpp index 292c79d6b..0cac3e1fa 100644 --- a/source/tests/metacall_cs_test/include/metacall-cs-test/environment.hpp +++ b/source/tests/metacall_cs_test/include/metacall-cs-test/environment.hpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cs_test/source/environment.cpp b/source/tests/metacall_cs_test/source/environment.cpp index ee8be5ec6..1753b9cd5 100644 --- a/source/tests/metacall_cs_test/source/environment.cpp +++ b/source/tests/metacall_cs_test/source/environment.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cs_test/source/main.cpp b/source/tests/metacall_cs_test/source/main.cpp index c396d3d5c..86fc12374 100644 --- a/source/tests/metacall_cs_test/source/main.cpp +++ b/source/tests/metacall_cs_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_cs_test/source/metacall_cs_test.cpp b/source/tests/metacall_cs_test/source/metacall_cs_test.cpp index 723fa8d3a..5e87a637c 100644 --- a/source/tests/metacall_cs_test/source/metacall_cs_test.cpp +++ b/source/tests/metacall_cs_test/source/metacall_cs_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_csharp_function_test/source/main.cpp b/source/tests/metacall_csharp_function_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_csharp_function_test/source/main.cpp +++ b/source/tests/metacall_csharp_function_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_csharp_function_test/source/metacall_csharp_function_test.cpp b/source/tests/metacall_csharp_function_test/source/metacall_csharp_function_test.cpp index 4f2834098..aaa0b4e96 100644 --- a/source/tests/metacall_csharp_function_test/source/metacall_csharp_function_test.cpp +++ b/source/tests/metacall_csharp_function_test/source/metacall_csharp_function_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_csharp_static_class_test/source/main.cpp b/source/tests/metacall_csharp_static_class_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_csharp_static_class_test/source/main.cpp +++ b/source/tests/metacall_csharp_static_class_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_csharp_static_class_test/source/metacall_csharp_static_class_test.cpp b/source/tests/metacall_csharp_static_class_test/source/metacall_csharp_static_class_test.cpp index 937e50977..5057a6efb 100644 --- a/source/tests/metacall_csharp_static_class_test/source/metacall_csharp_static_class_test.cpp +++ b/source/tests/metacall_csharp_static_class_test/source/metacall_csharp_static_class_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_depends_test/source/main.cpp b/source/tests/metacall_depends_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_depends_test/source/main.cpp +++ b/source/tests/metacall_depends_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_depends_test/source/metacall_depends_test.cpp b/source/tests/metacall_depends_test/source/metacall_depends_test.cpp index 4dff7122b..69fff39b4 100644 --- a/source/tests/metacall_depends_test/source/metacall_depends_test.cpp +++ b/source/tests/metacall_depends_test/source/metacall_depends_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_distributable_test/source/main.cpp b/source/tests/metacall_distributable_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_distributable_test/source/main.cpp +++ b/source/tests/metacall_distributable_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_distributable_test/source/metacall_distributable_test.cpp b/source/tests/metacall_distributable_test/source/metacall_distributable_test.cpp index 8faa82879..03300dbb6 100644 --- a/source/tests/metacall_distributable_test/source/metacall_distributable_test.cpp +++ b/source/tests/metacall_distributable_test/source/metacall_distributable_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ducktype_test/source/main.cpp b/source/tests/metacall_ducktype_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_ducktype_test/source/main.cpp +++ b/source/tests/metacall_ducktype_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ducktype_test/source/metacall_ducktype_test.cpp b/source/tests/metacall_ducktype_test/source/metacall_ducktype_test.cpp index fc56f8397..4f404762e 100644 --- a/source/tests/metacall_ducktype_test/source/metacall_ducktype_test.cpp +++ b/source/tests/metacall_ducktype_test/source/metacall_ducktype_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_duplicated_handle_test/source/main.cpp b/source/tests/metacall_duplicated_handle_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_duplicated_handle_test/source/main.cpp +++ b/source/tests/metacall_duplicated_handle_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_duplicated_handle_test/source/metacall_duplicated_handle_test.cpp b/source/tests/metacall_duplicated_handle_test/source/metacall_duplicated_handle_test.cpp index 0f4a3f71a..370c3e565 100644 --- a/source/tests/metacall_duplicated_handle_test/source/metacall_duplicated_handle_test.cpp +++ b/source/tests/metacall_duplicated_handle_test/source/metacall_duplicated_handle_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_duplicated_symbols_test/source/main.cpp b/source/tests/metacall_duplicated_symbols_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_duplicated_symbols_test/source/main.cpp +++ b/source/tests/metacall_duplicated_symbols_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_duplicated_symbols_test/source/metacall_duplicated_symbols_test.cpp b/source/tests/metacall_duplicated_symbols_test/source/metacall_duplicated_symbols_test.cpp index 4bfaf56d5..26ce8456a 100644 --- a/source/tests/metacall_duplicated_symbols_test/source/metacall_duplicated_symbols_test.cpp +++ b/source/tests/metacall_duplicated_symbols_test/source/metacall_duplicated_symbols_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_dynlink_path_test/source/main.cpp b/source/tests/metacall_dynlink_path_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_dynlink_path_test/source/main.cpp +++ b/source/tests/metacall_dynlink_path_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_dynlink_path_test/source/metacall_dynlink_path_test.cpp b/source/tests/metacall_dynlink_path_test/source/metacall_dynlink_path_test.cpp index 444d5891b..645b93dad 100644 --- a/source/tests/metacall_dynlink_path_test/source/metacall_dynlink_path_test.cpp +++ b/source/tests/metacall_dynlink_path_test/source/metacall_dynlink_path_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ext_test/source/main.cpp b/source/tests/metacall_ext_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_ext_test/source/main.cpp +++ b/source/tests/metacall_ext_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ext_test/source/metacall_ext_test.cpp b/source/tests/metacall_ext_test/source/metacall_ext_test.cpp index 87daa9182..4a1501728 100644 --- a/source/tests/metacall_ext_test/source/metacall_ext_test.cpp +++ b/source/tests/metacall_ext_test/source/metacall_ext_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_file_fail_test/source/main.cpp b/source/tests/metacall_file_fail_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_file_fail_test/source/main.cpp +++ b/source/tests/metacall_file_fail_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_file_fail_test/source/metacall_file_fail_test.cpp b/source/tests/metacall_file_fail_test/source/metacall_file_fail_test.cpp index 55dee75da..ce3a62f7b 100644 --- a/source/tests/metacall_file_fail_test/source/metacall_file_fail_test.cpp +++ b/source/tests/metacall_file_fail_test/source/metacall_file_fail_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_file_glob_test/source/main.cpp b/source/tests/metacall_file_glob_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_file_glob_test/source/main.cpp +++ b/source/tests/metacall_file_glob_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_file_glob_test/source/metacall_file_glob_test.cpp b/source/tests/metacall_file_glob_test/source/metacall_file_glob_test.cpp index 44234e435..23edddd06 100644 --- a/source/tests/metacall_file_glob_test/source/metacall_file_glob_test.cpp +++ b/source/tests/metacall_file_glob_test/source/metacall_file_glob_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_file_test/source/main.cpp b/source/tests/metacall_file_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_file_test/source/main.cpp +++ b/source/tests/metacall_file_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_file_test/source/metacall_file_test.cpp b/source/tests/metacall_file_test/source/metacall_file_test.cpp index 239afa0d4..029e8f0f6 100644 --- a/source/tests/metacall_file_test/source/metacall_file_test.cpp +++ b/source/tests/metacall_file_test/source/metacall_file_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_fork_test/source/main.cpp b/source/tests/metacall_fork_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_fork_test/source/main.cpp +++ b/source/tests/metacall_fork_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_fork_test/source/metacall_fork_test.cpp b/source/tests/metacall_fork_test/source/metacall_fork_test.cpp index 0e25266a2..07c9e8734 100644 --- a/source/tests/metacall_fork_test/source/metacall_fork_test.cpp +++ b/source/tests/metacall_fork_test/source/metacall_fork_test.cpp @@ -1,6 +1,6 @@ /* * MetaCall Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A library for providing a foreign function interface calls. * diff --git a/source/tests/metacall_function_test/source/main.cpp b/source/tests/metacall_function_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_function_test/source/main.cpp +++ b/source/tests/metacall_function_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_function_test/source/metacall_function_test.cpp b/source/tests/metacall_function_test/source/metacall_function_test.cpp index 63b010cc7..60c52efb1 100644 --- a/source/tests/metacall_function_test/source/metacall_function_test.cpp +++ b/source/tests/metacall_function_test/source/metacall_function_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_handle_export_test/source/main.cpp b/source/tests/metacall_handle_export_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_handle_export_test/source/main.cpp +++ b/source/tests/metacall_handle_export_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_handle_export_test/source/metacall_handle_export_test.cpp b/source/tests/metacall_handle_export_test/source/metacall_handle_export_test.cpp index 910453579..0c5fc5773 100644 --- a/source/tests/metacall_handle_export_test/source/metacall_handle_export_test.cpp +++ b/source/tests/metacall_handle_export_test/source/metacall_handle_export_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_handle_get_test/source/main.cpp b/source/tests/metacall_handle_get_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_handle_get_test/source/main.cpp +++ b/source/tests/metacall_handle_get_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_handle_get_test/source/metacall_handle_get_test.cpp b/source/tests/metacall_handle_get_test/source/metacall_handle_get_test.cpp index 2b939febb..c1d25836c 100644 --- a/source/tests/metacall_handle_get_test/source/metacall_handle_get_test.cpp +++ b/source/tests/metacall_handle_get_test/source/metacall_handle_get_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_init_fini_test/source/main.cpp b/source/tests/metacall_init_fini_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_init_fini_test/source/main.cpp +++ b/source/tests/metacall_init_fini_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_init_fini_test/source/metacall_init_fini_test.cpp b/source/tests/metacall_init_fini_test/source/metacall_init_fini_test.cpp index 8cb99a59c..2290009dd 100644 --- a/source/tests/metacall_init_fini_test/source/metacall_init_fini_test.cpp +++ b/source/tests/metacall_init_fini_test/source/metacall_init_fini_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_initialize_destroy_multiple_node_test/source/main.cpp b/source/tests/metacall_initialize_destroy_multiple_node_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_initialize_destroy_multiple_node_test/source/main.cpp +++ b/source/tests/metacall_initialize_destroy_multiple_node_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_initialize_destroy_multiple_node_test/source/metacall_initialize_destroy_multiple_node_test.cpp b/source/tests/metacall_initialize_destroy_multiple_node_test/source/metacall_initialize_destroy_multiple_node_test.cpp index 85772e7d4..12d008293 100644 --- a/source/tests/metacall_initialize_destroy_multiple_node_test/source/metacall_initialize_destroy_multiple_node_test.cpp +++ b/source/tests/metacall_initialize_destroy_multiple_node_test/source/metacall_initialize_destroy_multiple_node_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_initialize_destroy_multiple_test/source/main.cpp b/source/tests/metacall_initialize_destroy_multiple_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_initialize_destroy_multiple_test/source/main.cpp +++ b/source/tests/metacall_initialize_destroy_multiple_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_initialize_destroy_multiple_test/source/metacall_initialize_destroy_multiple_test.cpp b/source/tests/metacall_initialize_destroy_multiple_test/source/metacall_initialize_destroy_multiple_test.cpp index 2dc9af8e0..df51f5d94 100644 --- a/source/tests/metacall_initialize_destroy_multiple_test/source/metacall_initialize_destroy_multiple_test.cpp +++ b/source/tests/metacall_initialize_destroy_multiple_test/source/metacall_initialize_destroy_multiple_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_initialize_ex_test/source/main.cpp b/source/tests/metacall_initialize_ex_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_initialize_ex_test/source/main.cpp +++ b/source/tests/metacall_initialize_ex_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_initialize_ex_test/source/metacall_initialize_ex_test.cpp b/source/tests/metacall_initialize_ex_test/source/metacall_initialize_ex_test.cpp index 3c0d59ed1..8c9e2930b 100644 --- a/source/tests/metacall_initialize_ex_test/source/metacall_initialize_ex_test.cpp +++ b/source/tests/metacall_initialize_ex_test/source/metacall_initialize_ex_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_initialize_test/source/main.cpp b/source/tests/metacall_initialize_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_initialize_test/source/main.cpp +++ b/source/tests/metacall_initialize_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_initialize_test/source/metacall_initialize_test.cpp b/source/tests/metacall_initialize_test/source/metacall_initialize_test.cpp index b3964b7ee..ba4ab42b9 100644 --- a/source/tests/metacall_initialize_test/source/metacall_initialize_test.cpp +++ b/source/tests/metacall_initialize_test/source/metacall_initialize_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_inspect_test/source/main.cpp b/source/tests/metacall_inspect_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_inspect_test/source/main.cpp +++ b/source/tests/metacall_inspect_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_inspect_test/source/metacall_inspect_test.cpp b/source/tests/metacall_inspect_test/source/metacall_inspect_test.cpp index 56d8ed45b..06b1c220b 100644 --- a/source/tests/metacall_inspect_test/source/metacall_inspect_test.cpp +++ b/source/tests/metacall_inspect_test/source/metacall_inspect_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_integration_test/include/metacall-integration-test/environment.hpp b/source/tests/metacall_integration_test/include/metacall-integration-test/environment.hpp index 292c79d6b..0cac3e1fa 100644 --- a/source/tests/metacall_integration_test/include/metacall-integration-test/environment.hpp +++ b/source/tests/metacall_integration_test/include/metacall-integration-test/environment.hpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_integration_test/source/environment.cpp b/source/tests/metacall_integration_test/source/environment.cpp index a97ff71e8..8ac160cf2 100644 --- a/source/tests/metacall_integration_test/source/environment.cpp +++ b/source/tests/metacall_integration_test/source/environment.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_integration_test/source/main.cpp b/source/tests/metacall_integration_test/source/main.cpp index 1374fdaba..4f6907151 100644 --- a/source/tests/metacall_integration_test/source/main.cpp +++ b/source/tests/metacall_integration_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_integration_test/source/metacall_integration_test.cpp b/source/tests/metacall_integration_test/source/metacall_integration_test.cpp index 553d825fe..637163e98 100644 --- a/source/tests/metacall_integration_test/source/metacall_integration_test.cpp +++ b/source/tests/metacall_integration_test/source/metacall_integration_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for dynamic loading and linking shared objects at run-time. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_invalid_loader_test/source/main.cpp b/source/tests/metacall_invalid_loader_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_invalid_loader_test/source/main.cpp +++ b/source/tests/metacall_invalid_loader_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_invalid_loader_test/source/metacall_invalid_loader_test.cpp b/source/tests/metacall_invalid_loader_test/source/metacall_invalid_loader_test.cpp index c96a6698c..92edc0f2d 100644 --- a/source/tests/metacall_invalid_loader_test/source/metacall_invalid_loader_test.cpp +++ b/source/tests/metacall_invalid_loader_test/source/metacall_invalid_loader_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_java_test/source/main.cpp b/source/tests/metacall_java_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_java_test/source/main.cpp +++ b/source/tests/metacall_java_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_java_test/source/metacall_java_test.cpp b/source/tests/metacall_java_test/source/metacall_java_test.cpp index 6e0b842ca..c934cd173 100644 --- a/source/tests/metacall_java_test/source/metacall_java_test.cpp +++ b/source/tests/metacall_java_test/source/metacall_java_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_julia_test/source/main.cpp b/source/tests/metacall_julia_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_julia_test/source/main.cpp +++ b/source/tests/metacall_julia_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_julia_test/source/metacall_julia_test.cpp b/source/tests/metacall_julia_test/source/metacall_julia_test.cpp index 0b46150d5..1b9e21cdf 100644 --- a/source/tests/metacall_julia_test/source/metacall_julia_test.cpp +++ b/source/tests/metacall_julia_test/source/metacall_julia_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_library_path_without_env_vars_test/source/main.cpp b/source/tests/metacall_library_path_without_env_vars_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_library_path_without_env_vars_test/source/main.cpp +++ b/source/tests/metacall_library_path_without_env_vars_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_library_path_without_env_vars_test/source/metacall_library_path_without_env_vars_test.cpp b/source/tests/metacall_library_path_without_env_vars_test/source/metacall_library_path_without_env_vars_test.cpp index b72c62db5..a64b4464c 100644 --- a/source/tests/metacall_library_path_without_env_vars_test/source/metacall_library_path_without_env_vars_test.cpp +++ b/source/tests/metacall_library_path_without_env_vars_test/source/metacall_library_path_without_env_vars_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_llvm_test/source/main.cpp b/source/tests/metacall_llvm_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_llvm_test/source/main.cpp +++ b/source/tests/metacall_llvm_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_llvm_test/source/metacall_llvm_test.cpp b/source/tests/metacall_llvm_test/source/metacall_llvm_test.cpp index 81b24d49e..446161e60 100644 --- a/source/tests/metacall_llvm_test/source/metacall_llvm_test.cpp +++ b/source/tests/metacall_llvm_test/source/metacall_llvm_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_fail_test/source/main.cpp b/source/tests/metacall_load_configuration_fail_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_load_configuration_fail_test/source/main.cpp +++ b/source/tests/metacall_load_configuration_fail_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_fail_test/source/metacall_load_configuration_fail_test.cpp b/source/tests/metacall_load_configuration_fail_test/source/metacall_load_configuration_fail_test.cpp index 649069979..8632cb274 100644 --- a/source/tests/metacall_load_configuration_fail_test/source/metacall_load_configuration_fail_test.cpp +++ b/source/tests/metacall_load_configuration_fail_test/source/metacall_load_configuration_fail_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_node_python_test/source/main.cpp b/source/tests/metacall_load_configuration_node_python_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_load_configuration_node_python_test/source/main.cpp +++ b/source/tests/metacall_load_configuration_node_python_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_node_python_test/source/metacall_load_configuration_node_python_test.cpp b/source/tests/metacall_load_configuration_node_python_test/source/metacall_load_configuration_node_python_test.cpp index 1957d374e..92a253b9a 100644 --- a/source/tests/metacall_load_configuration_node_python_test/source/metacall_load_configuration_node_python_test.cpp +++ b/source/tests/metacall_load_configuration_node_python_test/source/metacall_load_configuration_node_python_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_python_node_test/source/main.cpp b/source/tests/metacall_load_configuration_python_node_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_load_configuration_python_node_test/source/main.cpp +++ b/source/tests/metacall_load_configuration_python_node_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_python_node_test/source/metacall_load_configuration_python_node_test.cpp b/source/tests/metacall_load_configuration_python_node_test/source/metacall_load_configuration_python_node_test.cpp index a0eec3a7f..ae64810d4 100644 --- a/source/tests/metacall_load_configuration_python_node_test/source/metacall_load_configuration_python_node_test.cpp +++ b/source/tests/metacall_load_configuration_python_node_test/source/metacall_load_configuration_python_node_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_relative_test/include/metacall_load_configuration_relative_test/metacall_load_configuration_relative_test.h.in b/source/tests/metacall_load_configuration_relative_test/include/metacall_load_configuration_relative_test/metacall_load_configuration_relative_test.h.in index 178a6f01d..8bfcd166d 100644 --- a/source/tests/metacall_load_configuration_relative_test/include/metacall_load_configuration_relative_test/metacall_load_configuration_relative_test.h.in +++ b/source/tests/metacall_load_configuration_relative_test/include/metacall_load_configuration_relative_test/metacall_load_configuration_relative_test.h.in @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_relative_test/source/main.cpp b/source/tests/metacall_load_configuration_relative_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_load_configuration_relative_test/source/main.cpp +++ b/source/tests/metacall_load_configuration_relative_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_relative_test/source/metacall_load_configuration_relative_test.cpp b/source/tests/metacall_load_configuration_relative_test/source/metacall_load_configuration_relative_test.cpp index 040a82d6e..c14a1ceda 100644 --- a/source/tests/metacall_load_configuration_relative_test/source/metacall_load_configuration_relative_test.cpp +++ b/source/tests/metacall_load_configuration_relative_test/source/metacall_load_configuration_relative_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_test/source/main.cpp b/source/tests/metacall_load_configuration_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_load_configuration_test/source/main.cpp +++ b/source/tests/metacall_load_configuration_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_configuration_test/source/metacall_load_configuration_test.cpp b/source/tests/metacall_load_configuration_test/source/metacall_load_configuration_test.cpp index 0f8882c5d..d3fc377c4 100644 --- a/source/tests/metacall_load_configuration_test/source/metacall_load_configuration_test.cpp +++ b/source/tests/metacall_load_configuration_test/source/metacall_load_configuration_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_memory_empty_test/source/main.cpp b/source/tests/metacall_load_memory_empty_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_load_memory_empty_test/source/main.cpp +++ b/source/tests/metacall_load_memory_empty_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_memory_empty_test/source/metacall_load_memory_empty_test.cpp b/source/tests/metacall_load_memory_empty_test/source/metacall_load_memory_empty_test.cpp index 07a835908..ee424fed8 100644 --- a/source/tests/metacall_load_memory_empty_test/source/metacall_load_memory_empty_test.cpp +++ b/source/tests/metacall_load_memory_empty_test/source/metacall_load_memory_empty_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_memory_test/source/main.cpp b/source/tests/metacall_load_memory_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_load_memory_test/source/main.cpp +++ b/source/tests/metacall_load_memory_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_load_memory_test/source/metacall_load_memory_test.cpp b/source/tests/metacall_load_memory_test/source/metacall_load_memory_test.cpp index 2fb814dbe..b65eeb92e 100644 --- a/source/tests/metacall_load_memory_test/source/metacall_load_memory_test.cpp +++ b/source/tests/metacall_load_memory_test/source/metacall_load_memory_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_logs_test/source/main.cpp b/source/tests/metacall_logs_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_logs_test/source/main.cpp +++ b/source/tests/metacall_logs_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_logs_test/source/metacall_logs_test.cpp b/source/tests/metacall_logs_test/source/metacall_logs_test.cpp index 87392c365..15c14c4ce 100644 --- a/source/tests/metacall_logs_test/source/metacall_logs_test.cpp +++ b/source/tests/metacall_logs_test/source/metacall_logs_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_lua_test/source/main.cpp b/source/tests/metacall_lua_test/source/main.cpp index a159f6a05..3f4f3377f 100644 --- a/source/tests/metacall_lua_test/source/main.cpp +++ b/source/tests/metacall_lua_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_lua_test/source/metacall_lua_test.cpp b/source/tests/metacall_lua_test/source/metacall_lua_test.cpp index 15b862254..e229265f7 100644 --- a/source/tests/metacall_lua_test/source/metacall_lua_test.cpp +++ b/source/tests/metacall_lua_test/source/metacall_lua_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_map_await_test/source/main.cpp b/source/tests/metacall_map_await_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_map_await_test/source/main.cpp +++ b/source/tests/metacall_map_await_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_map_await_test/source/metacall_map_await_test.cpp b/source/tests/metacall_map_await_test/source/metacall_map_await_test.cpp index bb3587059..8c3646f92 100644 --- a/source/tests/metacall_map_await_test/source/metacall_map_await_test.cpp +++ b/source/tests/metacall_map_await_test/source/metacall_map_await_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_map_test/source/main.cpp b/source/tests/metacall_map_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_map_test/source/main.cpp +++ b/source/tests/metacall_map_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_map_test/source/metacall_map_test.cpp b/source/tests/metacall_map_test/source/metacall_map_test.cpp index 1a34a5164..ceb829c78 100644 --- a/source/tests/metacall_map_test/source/metacall_map_test.cpp +++ b/source/tests/metacall_map_test/source/metacall_map_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_async_resources_test/source/main.cpp b/source/tests/metacall_node_async_resources_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_async_resources_test/source/main.cpp +++ b/source/tests/metacall_node_async_resources_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_async_resources_test/source/metacall_node_async_resources_test.cpp b/source/tests/metacall_node_async_resources_test/source/metacall_node_async_resources_test.cpp index a0ca94c0f..4a979174e 100644 --- a/source/tests/metacall_node_async_resources_test/source/metacall_node_async_resources_test.cpp +++ b/source/tests/metacall_node_async_resources_test/source/metacall_node_async_resources_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_async_test/source/main.cpp b/source/tests/metacall_node_async_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_async_test/source/main.cpp +++ b/source/tests/metacall_node_async_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_async_test/source/metacall_node_async_test.cpp b/source/tests/metacall_node_async_test/source/metacall_node_async_test.cpp index ceff485d4..f1d45cd37 100644 --- a/source/tests/metacall_node_async_test/source/metacall_node_async_test.cpp +++ b/source/tests/metacall_node_async_test/source/metacall_node_async_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_await_chain_test/source/main.cpp b/source/tests/metacall_node_await_chain_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_await_chain_test/source/main.cpp +++ b/source/tests/metacall_node_await_chain_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_await_chain_test/source/metacall_node_await_chain_test.cpp b/source/tests/metacall_node_await_chain_test/source/metacall_node_await_chain_test.cpp index 44a6583b8..308dff2bf 100644 --- a/source/tests/metacall_node_await_chain_test/source/metacall_node_await_chain_test.cpp +++ b/source/tests/metacall_node_await_chain_test/source/metacall_node_await_chain_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_call_test/source/main.cpp b/source/tests/metacall_node_call_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_call_test/source/main.cpp +++ b/source/tests/metacall_node_call_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_call_test/source/metacall_node_call_test.cpp b/source/tests/metacall_node_call_test/source/metacall_node_call_test.cpp index 5f2b57be0..7d1fbd59a 100644 --- a/source/tests/metacall_node_call_test/source/metacall_node_call_test.cpp +++ b/source/tests/metacall_node_call_test/source/metacall_node_call_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_callback_test/source/main.cpp b/source/tests/metacall_node_callback_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_callback_test/source/main.cpp +++ b/source/tests/metacall_node_callback_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_callback_test/source/metacall_node_callback_test.cpp b/source/tests/metacall_node_callback_test/source/metacall_node_callback_test.cpp index 52953bea5..a8a4bd900 100644 --- a/source/tests/metacall_node_callback_test/source/metacall_node_callback_test.cpp +++ b/source/tests/metacall_node_callback_test/source/metacall_node_callback_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_clear_mem_test/source/main.cpp b/source/tests/metacall_node_clear_mem_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_clear_mem_test/source/main.cpp +++ b/source/tests/metacall_node_clear_mem_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_clear_mem_test/source/metacall_node_clear_mem_test.cpp b/source/tests/metacall_node_clear_mem_test/source/metacall_node_clear_mem_test.cpp index 2ddf9f222..17e38ea18 100644 --- a/source/tests/metacall_node_clear_mem_test/source/metacall_node_clear_mem_test.cpp +++ b/source/tests/metacall_node_clear_mem_test/source/metacall_node_clear_mem_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_default_export_test/source/main.cpp b/source/tests/metacall_node_default_export_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_default_export_test/source/main.cpp +++ b/source/tests/metacall_node_default_export_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_default_export_test/source/metacall_node_default_export_test.cpp b/source/tests/metacall_node_default_export_test/source/metacall_node_default_export_test.cpp index 8c69cd2f2..6e51c13c1 100644 --- a/source/tests/metacall_node_default_export_test/source/metacall_node_default_export_test.cpp +++ b/source/tests/metacall_node_default_export_test/source/metacall_node_default_export_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_event_loop_signal_test/source/main.cpp b/source/tests/metacall_node_event_loop_signal_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_event_loop_signal_test/source/main.cpp +++ b/source/tests/metacall_node_event_loop_signal_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_event_loop_signal_test/source/metacall_node_event_loop_signal_test.cpp b/source/tests/metacall_node_event_loop_signal_test/source/metacall_node_event_loop_signal_test.cpp index db5969c62..5cf2feeb3 100644 --- a/source/tests/metacall_node_event_loop_signal_test/source/metacall_node_event_loop_signal_test.cpp +++ b/source/tests/metacall_node_event_loop_signal_test/source/metacall_node_event_loop_signal_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_event_loop_test/source/main.cpp b/source/tests/metacall_node_event_loop_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_event_loop_test/source/main.cpp +++ b/source/tests/metacall_node_event_loop_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_event_loop_test/source/metacall_node_event_loop_test.cpp b/source/tests/metacall_node_event_loop_test/source/metacall_node_event_loop_test.cpp index 15f394c5c..350386b0c 100644 --- a/source/tests/metacall_node_event_loop_test/source/metacall_node_event_loop_test.cpp +++ b/source/tests/metacall_node_event_loop_test/source/metacall_node_event_loop_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_exception_test/source/main.cpp b/source/tests/metacall_node_exception_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_exception_test/source/main.cpp +++ b/source/tests/metacall_node_exception_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_exception_test/source/metacall_node_exception_test.cpp b/source/tests/metacall_node_exception_test/source/metacall_node_exception_test.cpp index d2d51d6d2..a82a9ed6c 100644 --- a/source/tests/metacall_node_exception_test/source/metacall_node_exception_test.cpp +++ b/source/tests/metacall_node_exception_test/source/metacall_node_exception_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_extension_test/node_extension_test/source/node_extension_test.c b/source/tests/metacall_node_extension_test/node_extension_test/source/node_extension_test.c index d5a9087f2..a9b08fed4 100644 --- a/source/tests/metacall_node_extension_test/node_extension_test/source/node_extension_test.c +++ b/source/tests/metacall_node_extension_test/node_extension_test/source/node_extension_test.c @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_extension_test/node_extension_test/source/node_extension_test_win32_delay_load.cpp b/source/tests/metacall_node_extension_test/node_extension_test/source/node_extension_test_win32_delay_load.cpp index 80dfe79aa..8ab28a9ac 100644 --- a/source/tests/metacall_node_extension_test/node_extension_test/source/node_extension_test_win32_delay_load.cpp +++ b/source/tests/metacall_node_extension_test/node_extension_test/source/node_extension_test_win32_delay_load.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_extension_test/source/main.cpp b/source/tests/metacall_node_extension_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_extension_test/source/main.cpp +++ b/source/tests/metacall_node_extension_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_extension_test/source/metacall_node_extension_test.cpp b/source/tests/metacall_node_extension_test/source/metacall_node_extension_test.cpp index b86d805ff..f091bf53c 100644 --- a/source/tests/metacall_node_extension_test/source/metacall_node_extension_test.cpp +++ b/source/tests/metacall_node_extension_test/source/metacall_node_extension_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_fail_env_var_test/source/main.cpp b/source/tests/metacall_node_fail_env_var_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_fail_env_var_test/source/main.cpp +++ b/source/tests/metacall_node_fail_env_var_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_fail_env_var_test/source/metacall_node_fail_env_var_test.cpp b/source/tests/metacall_node_fail_env_var_test/source/metacall_node_fail_env_var_test.cpp index fd507da27..6c3e0f255 100644 --- a/source/tests/metacall_node_fail_env_var_test/source/metacall_node_fail_env_var_test.cpp +++ b/source/tests/metacall_node_fail_env_var_test/source/metacall_node_fail_env_var_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_fail_load_leak_test/source/main.cpp b/source/tests/metacall_node_fail_load_leak_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_fail_load_leak_test/source/main.cpp +++ b/source/tests/metacall_node_fail_load_leak_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_fail_load_leak_test/source/metacall_node_fail_load_leak_test.cpp b/source/tests/metacall_node_fail_load_leak_test/source/metacall_node_fail_load_leak_test.cpp index 76bdeed5e..a9c44e1f6 100644 --- a/source/tests/metacall_node_fail_load_leak_test/source/metacall_node_fail_load_leak_test.cpp +++ b/source/tests/metacall_node_fail_load_leak_test/source/metacall_node_fail_load_leak_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_fail_test/source/main.cpp b/source/tests/metacall_node_fail_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_fail_test/source/main.cpp +++ b/source/tests/metacall_node_fail_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_fail_test/source/metacall_node_fail_test.cpp b/source/tests/metacall_node_fail_test/source/metacall_node_fail_test.cpp index d6fb3299f..d065434d0 100644 --- a/source/tests/metacall_node_fail_test/source/metacall_node_fail_test.cpp +++ b/source/tests/metacall_node_fail_test/source/metacall_node_fail_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_inline_test/source/main.cpp b/source/tests/metacall_node_inline_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_inline_test/source/main.cpp +++ b/source/tests/metacall_node_inline_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_inline_test/source/metacall_node_inline_test.cpp b/source/tests/metacall_node_inline_test/source/metacall_node_inline_test.cpp index 4b6402a00..c8f9f767c 100644 --- a/source/tests/metacall_node_inline_test/source/metacall_node_inline_test.cpp +++ b/source/tests/metacall_node_inline_test/source/metacall_node_inline_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_native_code_test/source/main.cpp b/source/tests/metacall_node_native_code_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_native_code_test/source/main.cpp +++ b/source/tests/metacall_node_native_code_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_native_code_test/source/metacall_node_native_code_test.cpp b/source/tests/metacall_node_native_code_test/source/metacall_node_native_code_test.cpp index b1d8f4dde..83bd3466b 100644 --- a/source/tests/metacall_node_native_code_test/source/metacall_node_native_code_test.cpp +++ b/source/tests/metacall_node_native_code_test/source/metacall_node_native_code_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_port_await_test/source/main.cpp b/source/tests/metacall_node_port_await_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_port_await_test/source/main.cpp +++ b/source/tests/metacall_node_port_await_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_port_await_test/source/metacall_node_port_await_test.cpp b/source/tests/metacall_node_port_await_test/source/metacall_node_port_await_test.cpp index 9ef976cb7..34d49f16e 100644 --- a/source/tests/metacall_node_port_await_test/source/metacall_node_port_await_test.cpp +++ b/source/tests/metacall_node_port_await_test/source/metacall_node_port_await_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_port_rs_test/source/main.cpp b/source/tests/metacall_node_port_rs_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_port_rs_test/source/main.cpp +++ b/source/tests/metacall_node_port_rs_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_port_rs_test/source/metacall_node_port_rs_test.cpp b/source/tests/metacall_node_port_rs_test/source/metacall_node_port_rs_test.cpp index f55a72e10..3c34a8094 100644 --- a/source/tests/metacall_node_port_rs_test/source/metacall_node_port_rs_test.cpp +++ b/source/tests/metacall_node_port_rs_test/source/metacall_node_port_rs_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_port_test/source/main.cpp b/source/tests/metacall_node_port_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_port_test/source/main.cpp +++ b/source/tests/metacall_node_port_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_port_test/source/metacall_node_port_test.cpp b/source/tests/metacall_node_port_test/source/metacall_node_port_test.cpp index 0b45a28fd..3b3552186 100644 --- a/source/tests/metacall_node_port_test/source/metacall_node_port_test.cpp +++ b/source/tests/metacall_node_port_test/source/metacall_node_port_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_async_after_destroy_test/source/main.cpp b/source/tests/metacall_node_python_async_after_destroy_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_python_async_after_destroy_test/source/main.cpp +++ b/source/tests/metacall_node_python_async_after_destroy_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_async_after_destroy_test/source/metacall_node_python_async_after_destroy_test.cpp b/source/tests/metacall_node_python_async_after_destroy_test/source/metacall_node_python_async_after_destroy_test.cpp index b83e202dd..464e9b750 100644 --- a/source/tests/metacall_node_python_async_after_destroy_test/source/metacall_node_python_async_after_destroy_test.cpp +++ b/source/tests/metacall_node_python_async_after_destroy_test/source/metacall_node_python_async_after_destroy_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_await_test/source/main.cpp b/source/tests/metacall_node_python_await_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_python_await_test/source/main.cpp +++ b/source/tests/metacall_node_python_await_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_await_test/source/metacall_node_python_await_test.cpp b/source/tests/metacall_node_python_await_test/source/metacall_node_python_await_test.cpp index 7364f5fda..2f7160c5d 100644 --- a/source/tests/metacall_node_python_await_test/source/metacall_node_python_await_test.cpp +++ b/source/tests/metacall_node_python_await_test/source/metacall_node_python_await_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_deadlock_test/source/main.cpp b/source/tests/metacall_node_python_deadlock_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_python_deadlock_test/source/main.cpp +++ b/source/tests/metacall_node_python_deadlock_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_deadlock_test/source/metacall_node_python_deadlock_test.cpp b/source/tests/metacall_node_python_deadlock_test/source/metacall_node_python_deadlock_test.cpp index d274cc04f..95c5f2d9b 100644 --- a/source/tests/metacall_node_python_deadlock_test/source/metacall_node_python_deadlock_test.cpp +++ b/source/tests/metacall_node_python_deadlock_test/source/metacall_node_python_deadlock_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_exception_test/source/main.cpp b/source/tests/metacall_node_python_exception_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_python_exception_test/source/main.cpp +++ b/source/tests/metacall_node_python_exception_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_exception_test/source/metacall_node_python_exception_test.cpp b/source/tests/metacall_node_python_exception_test/source/metacall_node_python_exception_test.cpp index ef3d2e347..abe3e4a49 100644 --- a/source/tests/metacall_node_python_exception_test/source/metacall_node_python_exception_test.cpp +++ b/source/tests/metacall_node_python_exception_test/source/metacall_node_python_exception_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_port_mock_test/source/main.cpp b/source/tests/metacall_node_python_port_mock_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_python_port_mock_test/source/main.cpp +++ b/source/tests/metacall_node_python_port_mock_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_port_mock_test/source/metacall_node_python_port_mock_test.cpp b/source/tests/metacall_node_python_port_mock_test/source/metacall_node_python_port_mock_test.cpp index 38641e395..c1db00da3 100644 --- a/source/tests/metacall_node_python_port_mock_test/source/metacall_node_python_port_mock_test.cpp +++ b/source/tests/metacall_node_python_port_mock_test/source/metacall_node_python_port_mock_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_port_ruby_test/source/main.cpp b/source/tests/metacall_node_python_port_ruby_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_python_port_ruby_test/source/main.cpp +++ b/source/tests/metacall_node_python_port_ruby_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_port_ruby_test/source/metacall_node_python_port_ruby_test.cpp b/source/tests/metacall_node_python_port_ruby_test/source/metacall_node_python_port_ruby_test.cpp index 62c34c7de..87ce31cb0 100644 --- a/source/tests/metacall_node_python_port_ruby_test/source/metacall_node_python_port_ruby_test.cpp +++ b/source/tests/metacall_node_python_port_ruby_test/source/metacall_node_python_port_ruby_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_ruby_test/source/main.cpp b/source/tests/metacall_node_python_ruby_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_python_ruby_test/source/main.cpp +++ b/source/tests/metacall_node_python_ruby_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_python_ruby_test/source/metacall_node_python_ruby_test.cpp b/source/tests/metacall_node_python_ruby_test/source/metacall_node_python_ruby_test.cpp index 360f52ffc..246e93b8a 100644 --- a/source/tests/metacall_node_python_ruby_test/source/metacall_node_python_ruby_test.cpp +++ b/source/tests/metacall_node_python_ruby_test/source/metacall_node_python_ruby_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_reentrant_test/source/main.cpp b/source/tests/metacall_node_reentrant_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_reentrant_test/source/main.cpp +++ b/source/tests/metacall_node_reentrant_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_reentrant_test/source/metacall_node_reentrant_test.cpp b/source/tests/metacall_node_reentrant_test/source/metacall_node_reentrant_test.cpp index 3ad538ae4..2f32965ec 100644 --- a/source/tests/metacall_node_reentrant_test/source/metacall_node_reentrant_test.cpp +++ b/source/tests/metacall_node_reentrant_test/source/metacall_node_reentrant_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_signal_handler_test/source/main.cpp b/source/tests/metacall_node_signal_handler_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_signal_handler_test/source/main.cpp +++ b/source/tests/metacall_node_signal_handler_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_signal_handler_test/source/metacall_node_signal_handler_test.cpp b/source/tests/metacall_node_signal_handler_test/source/metacall_node_signal_handler_test.cpp index 4b9141b1f..8dd995d8d 100644 --- a/source/tests/metacall_node_signal_handler_test/source/metacall_node_signal_handler_test.cpp +++ b/source/tests/metacall_node_signal_handler_test/source/metacall_node_signal_handler_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_test/source/main.cpp b/source/tests/metacall_node_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_test/source/main.cpp +++ b/source/tests/metacall_node_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_test/source/metacall_node_test.cpp b/source/tests/metacall_node_test/source/metacall_node_test.cpp index 4af83ec98..1b7b595b6 100644 --- a/source/tests/metacall_node_test/source/metacall_node_test.cpp +++ b/source/tests/metacall_node_test/source/metacall_node_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_typescript_test/source/main.cpp b/source/tests/metacall_node_typescript_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_node_typescript_test/source/main.cpp +++ b/source/tests/metacall_node_typescript_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_node_typescript_test/source/metacall_node_typescript_test.cpp b/source/tests/metacall_node_typescript_test/source/metacall_node_typescript_test.cpp index 80404cee8..49ddae7f9 100644 --- a/source/tests/metacall_node_typescript_test/source/metacall_node_typescript_test.cpp +++ b/source/tests/metacall_node_typescript_test/source/metacall_node_typescript_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_plugin_extension_destroy_order_test/source/main.cpp b/source/tests/metacall_plugin_extension_destroy_order_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_plugin_extension_destroy_order_test/source/main.cpp +++ b/source/tests/metacall_plugin_extension_destroy_order_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_plugin_extension_destroy_order_test/source/metacall_plugin_extension_destroy_order_test.cpp b/source/tests/metacall_plugin_extension_destroy_order_test/source/metacall_plugin_extension_destroy_order_test.cpp index 68d8a1c6e..d738fa05a 100644 --- a/source/tests/metacall_plugin_extension_destroy_order_test/source/metacall_plugin_extension_destroy_order_test.cpp +++ b/source/tests/metacall_plugin_extension_destroy_order_test/source/metacall_plugin_extension_destroy_order_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_plugin_extension_local_test/source/main.cpp b/source/tests/metacall_plugin_extension_local_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_plugin_extension_local_test/source/main.cpp +++ b/source/tests/metacall_plugin_extension_local_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_plugin_extension_local_test/source/metacall_plugin_extension_local_test.cpp b/source/tests/metacall_plugin_extension_local_test/source/metacall_plugin_extension_local_test.cpp index 546a298a8..cb49d030b 100644 --- a/source/tests/metacall_plugin_extension_local_test/source/metacall_plugin_extension_local_test.cpp +++ b/source/tests/metacall_plugin_extension_local_test/source/metacall_plugin_extension_local_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_plugin_extension_test/source/main.cpp b/source/tests/metacall_plugin_extension_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_plugin_extension_test/source/main.cpp +++ b/source/tests/metacall_plugin_extension_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_plugin_extension_test/source/metacall_plugin_extension_test.cpp b/source/tests/metacall_plugin_extension_test/source/metacall_plugin_extension_test.cpp index 9a3766fb7..73a726997 100644 --- a/source/tests/metacall_plugin_extension_test/source/metacall_plugin_extension_test.cpp +++ b/source/tests/metacall_plugin_extension_test/source/metacall_plugin_extension_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_await_test/source/main.cpp b/source/tests/metacall_python_await_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_await_test/source/main.cpp +++ b/source/tests/metacall_python_await_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_await_test/source/metacall_python_await_test.cpp b/source/tests/metacall_python_await_test/source/metacall_python_await_test.cpp index 1ffc54f80..79d1a7d47 100644 --- a/source/tests/metacall_python_await_test/source/metacall_python_await_test.cpp +++ b/source/tests/metacall_python_await_test/source/metacall_python_await_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_builtins_test/source/main.cpp b/source/tests/metacall_python_builtins_test/source/main.cpp index a159f6a05..3f4f3377f 100644 --- a/source/tests/metacall_python_builtins_test/source/main.cpp +++ b/source/tests/metacall_python_builtins_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_builtins_test/source/metacall_python_builtins_test.cpp b/source/tests/metacall_python_builtins_test/source/metacall_python_builtins_test.cpp index 26cd3cf88..e3fb30711 100644 --- a/source/tests/metacall_python_builtins_test/source/metacall_python_builtins_test.cpp +++ b/source/tests/metacall_python_builtins_test/source/metacall_python_builtins_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_callback_test/source/main.cpp b/source/tests/metacall_python_callback_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_callback_test/source/main.cpp +++ b/source/tests/metacall_python_callback_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_callback_test/source/metacall_python_callback_test.cpp b/source/tests/metacall_python_callback_test/source/metacall_python_callback_test.cpp index cead6547e..c183c575e 100644 --- a/source/tests/metacall_python_callback_test/source/metacall_python_callback_test.cpp +++ b/source/tests/metacall_python_callback_test/source/metacall_python_callback_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_dict_test/source/main.cpp b/source/tests/metacall_python_dict_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_dict_test/source/main.cpp +++ b/source/tests/metacall_python_dict_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_dict_test/source/metacall_python_dict_test.cpp b/source/tests/metacall_python_dict_test/source/metacall_python_dict_test.cpp index 203d5196e..af0ec1aa5 100644 --- a/source/tests/metacall_python_dict_test/source/metacall_python_dict_test.cpp +++ b/source/tests/metacall_python_dict_test/source/metacall_python_dict_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_exception_test/source/main.cpp b/source/tests/metacall_python_exception_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_exception_test/source/main.cpp +++ b/source/tests/metacall_python_exception_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_exception_test/source/metacall_python_exception_test.cpp b/source/tests/metacall_python_exception_test/source/metacall_python_exception_test.cpp index d7df63ee0..1a5f92cec 100644 --- a/source/tests/metacall_python_exception_test/source/metacall_python_exception_test.cpp +++ b/source/tests/metacall_python_exception_test/source/metacall_python_exception_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_fail_test/source/main.cpp b/source/tests/metacall_python_fail_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_fail_test/source/main.cpp +++ b/source/tests/metacall_python_fail_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_fail_test/source/metacall_python_fail_test.cpp b/source/tests/metacall_python_fail_test/source/metacall_python_fail_test.cpp index 113569a9d..b36822b37 100644 --- a/source/tests/metacall_python_fail_test/source/metacall_python_fail_test.cpp +++ b/source/tests/metacall_python_fail_test/source/metacall_python_fail_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_gc_test/source/main.cpp b/source/tests/metacall_python_gc_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_gc_test/source/main.cpp +++ b/source/tests/metacall_python_gc_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_gc_test/source/metacall_python_gc_test.cpp b/source/tests/metacall_python_gc_test/source/metacall_python_gc_test.cpp index 6543a7ca8..14e5fdc74 100644 --- a/source/tests/metacall_python_gc_test/source/metacall_python_gc_test.cpp +++ b/source/tests/metacall_python_gc_test/source/metacall_python_gc_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_loader_port_test/source/main.cpp b/source/tests/metacall_python_loader_port_test/source/main.cpp index a159f6a05..3f4f3377f 100644 --- a/source/tests/metacall_python_loader_port_test/source/main.cpp +++ b/source/tests/metacall_python_loader_port_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_loader_port_test/source/metacall_python_loader_port_test.cpp b/source/tests/metacall_python_loader_port_test/source/metacall_python_loader_port_test.cpp index 773af4e77..05619bf63 100644 --- a/source/tests/metacall_python_loader_port_test/source/metacall_python_loader_port_test.cpp +++ b/source/tests/metacall_python_loader_port_test/source/metacall_python_loader_port_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_model_test/source/main.cpp b/source/tests/metacall_python_model_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_model_test/source/main.cpp +++ b/source/tests/metacall_python_model_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_model_test/source/metacall_python_model_test.cpp b/source/tests/metacall_python_model_test/source/metacall_python_model_test.cpp index 5d903532a..1ab58c5db 100644 --- a/source/tests/metacall_python_model_test/source/metacall_python_model_test.cpp +++ b/source/tests/metacall_python_model_test/source/metacall_python_model_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_node_await_test/source/main.cpp b/source/tests/metacall_python_node_await_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_node_await_test/source/main.cpp +++ b/source/tests/metacall_python_node_await_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_node_await_test/source/metacall_python_node_await_test.cpp b/source/tests/metacall_python_node_await_test/source/metacall_python_node_await_test.cpp index 7d5901b30..5b1d15b30 100644 --- a/source/tests/metacall_python_node_await_test/source/metacall_python_node_await_test.cpp +++ b/source/tests/metacall_python_node_await_test/source/metacall_python_node_await_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_object_class_test/source/main.cpp b/source/tests/metacall_python_object_class_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_object_class_test/source/main.cpp +++ b/source/tests/metacall_python_object_class_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_object_class_test/source/metacall_python_object_class_test.cpp b/source/tests/metacall_python_object_class_test/source/metacall_python_object_class_test.cpp index a23fa8572..c2117aeb1 100644 --- a/source/tests/metacall_python_object_class_test/source/metacall_python_object_class_test.cpp +++ b/source/tests/metacall_python_object_class_test/source/metacall_python_object_class_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_open_test/source/main.cpp b/source/tests/metacall_python_open_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_open_test/source/main.cpp +++ b/source/tests/metacall_python_open_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_open_test/source/metacall_python_open_test.cpp b/source/tests/metacall_python_open_test/source/metacall_python_open_test.cpp index ea0481af2..0a273681e 100644 --- a/source/tests/metacall_python_open_test/source/metacall_python_open_test.cpp +++ b/source/tests/metacall_python_open_test/source/metacall_python_open_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_pointer_test/source/main.cpp b/source/tests/metacall_python_pointer_test/source/main.cpp index a159f6a05..3f4f3377f 100644 --- a/source/tests/metacall_python_pointer_test/source/main.cpp +++ b/source/tests/metacall_python_pointer_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_pointer_test/source/metacall_python_pointer_test.cpp b/source/tests/metacall_python_pointer_test/source/metacall_python_pointer_test.cpp index fa31f3a83..8883a2d53 100644 --- a/source/tests/metacall_python_pointer_test/source/metacall_python_pointer_test.cpp +++ b/source/tests/metacall_python_pointer_test/source/metacall_python_pointer_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_port_callback_test/source/main.cpp b/source/tests/metacall_python_port_callback_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_port_callback_test/source/main.cpp +++ b/source/tests/metacall_python_port_callback_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_port_callback_test/source/metacall_python_port_callback_test.cpp b/source/tests/metacall_python_port_callback_test/source/metacall_python_port_callback_test.cpp index 9d4bda5a5..b3f5b8598 100644 --- a/source/tests/metacall_python_port_callback_test/source/metacall_python_port_callback_test.cpp +++ b/source/tests/metacall_python_port_callback_test/source/metacall_python_port_callback_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_port_https_test/source/main.cpp b/source/tests/metacall_python_port_https_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_port_https_test/source/main.cpp +++ b/source/tests/metacall_python_port_https_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_port_https_test/source/metacall_python_port_https_test.cpp b/source/tests/metacall_python_port_https_test/source/metacall_python_port_https_test.cpp index 65fce0816..f552efa14 100644 --- a/source/tests/metacall_python_port_https_test/source/metacall_python_port_https_test.cpp +++ b/source/tests/metacall_python_port_https_test/source/metacall_python_port_https_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_port_import_test/source/main.cpp b/source/tests/metacall_python_port_import_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_port_import_test/source/main.cpp +++ b/source/tests/metacall_python_port_import_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_port_import_test/source/metacall_python_port_import_test.cpp b/source/tests/metacall_python_port_import_test/source/metacall_python_port_import_test.cpp index b2a18f6f1..bfb2fa4e8 100644 --- a/source/tests/metacall_python_port_import_test/source/metacall_python_port_import_test.cpp +++ b/source/tests/metacall_python_port_import_test/source/metacall_python_port_import_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_port_test/source/main.cpp b/source/tests/metacall_python_port_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_port_test/source/main.cpp +++ b/source/tests/metacall_python_port_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_port_test/source/metacall_python_port_test.cpp b/source/tests/metacall_python_port_test/source/metacall_python_port_test.cpp index 342523b3e..e901d7245 100644 --- a/source/tests/metacall_python_port_test/source/metacall_python_port_test.cpp +++ b/source/tests/metacall_python_port_test/source/metacall_python_port_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_reentrant_test/source/main.cpp b/source/tests/metacall_python_reentrant_test/source/main.cpp index a159f6a05..3f4f3377f 100644 --- a/source/tests/metacall_python_reentrant_test/source/main.cpp +++ b/source/tests/metacall_python_reentrant_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_reentrant_test/source/metacall_python_reentrant_test.cpp b/source/tests/metacall_python_reentrant_test/source/metacall_python_reentrant_test.cpp index f049548f4..33328a637 100644 --- a/source/tests/metacall_python_reentrant_test/source/metacall_python_reentrant_test.cpp +++ b/source/tests/metacall_python_reentrant_test/source/metacall_python_reentrant_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_relative_path_test/source/main.cpp b/source/tests/metacall_python_relative_path_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_relative_path_test/source/main.cpp +++ b/source/tests/metacall_python_relative_path_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_relative_path_test/source/metacall_python_relative_path_test.cpp b/source/tests/metacall_python_relative_path_test/source/metacall_python_relative_path_test.cpp index 3fee734d9..5d0505a56 100644 --- a/source/tests/metacall_python_relative_path_test/source/metacall_python_relative_path_test.cpp +++ b/source/tests/metacall_python_relative_path_test/source/metacall_python_relative_path_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_test/source/main.cpp b/source/tests/metacall_python_test/source/main.cpp index a159f6a05..3f4f3377f 100644 --- a/source/tests/metacall_python_test/source/main.cpp +++ b/source/tests/metacall_python_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_test/source/metacall_python_test.cpp b/source/tests/metacall_python_test/source/metacall_python_test.cpp index eb94ad998..4346ed544 100644 --- a/source/tests/metacall_python_test/source/metacall_python_test.cpp +++ b/source/tests/metacall_python_test/source/metacall_python_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading python code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_varargs_test/source/main.cpp b/source/tests/metacall_python_varargs_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_varargs_test/source/main.cpp +++ b/source/tests/metacall_python_varargs_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_varargs_test/source/metacall_python_varargs_test.cpp b/source/tests/metacall_python_varargs_test/source/metacall_python_varargs_test.cpp index 579e20c23..539c7e02b 100644 --- a/source/tests/metacall_python_varargs_test/source/metacall_python_varargs_test.cpp +++ b/source/tests/metacall_python_varargs_test/source/metacall_python_varargs_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_without_functions_test/source/main.cpp b/source/tests/metacall_python_without_functions_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_python_without_functions_test/source/main.cpp +++ b/source/tests/metacall_python_without_functions_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_python_without_functions_test/source/metacall_python_without_functions_test.cpp b/source/tests/metacall_python_without_functions_test/source/metacall_python_without_functions_test.cpp index 8bb905697..8dd69eafa 100644 --- a/source/tests/metacall_python_without_functions_test/source/metacall_python_without_functions_test.cpp +++ b/source/tests/metacall_python_without_functions_test/source/metacall_python_without_functions_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_reinitialize_test/source/main.cpp b/source/tests/metacall_reinitialize_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_reinitialize_test/source/main.cpp +++ b/source/tests/metacall_reinitialize_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_reinitialize_test/source/metacall_reinitialize_test.cpp b/source/tests/metacall_reinitialize_test/source/metacall_reinitialize_test.cpp index 88f2bb711..e1324ba7f 100644 --- a/source/tests/metacall_reinitialize_test/source/metacall_reinitialize_test.cpp +++ b/source/tests/metacall_reinitialize_test/source/metacall_reinitialize_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_reload_functions_test/source/main.cpp b/source/tests/metacall_reload_functions_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_reload_functions_test/source/main.cpp +++ b/source/tests/metacall_reload_functions_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_reload_functions_test/source/metacall_reload_functions_test.cpp b/source/tests/metacall_reload_functions_test/source/metacall_reload_functions_test.cpp index 8bb66c48a..85fee11c5 100644 --- a/source/tests/metacall_reload_functions_test/source/metacall_reload_functions_test.cpp +++ b/source/tests/metacall_reload_functions_test/source/metacall_reload_functions_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_return_monad_test/source/main.cpp b/source/tests/metacall_return_monad_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_return_monad_test/source/main.cpp +++ b/source/tests/metacall_return_monad_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_return_monad_test/source/metacall_return_monad_test.cpp b/source/tests/metacall_return_monad_test/source/metacall_return_monad_test.cpp index aa1448f8f..63b65fe2f 100644 --- a/source/tests/metacall_return_monad_test/source/metacall_return_monad_test.cpp +++ b/source/tests/metacall_return_monad_test/source/metacall_return_monad_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rpc_test/source/main.cpp b/source/tests/metacall_rpc_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_rpc_test/source/main.cpp +++ b/source/tests/metacall_rpc_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rpc_test/source/metacall_rpc_test.cpp b/source/tests/metacall_rpc_test/source/metacall_rpc_test.cpp index c984d01ff..0984befcd 100644 --- a/source/tests/metacall_rpc_test/source/metacall_rpc_test.cpp +++ b/source/tests/metacall_rpc_test/source/metacall_rpc_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_fail_empty_test/source/main.cpp b/source/tests/metacall_ruby_fail_empty_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_ruby_fail_empty_test/source/main.cpp +++ b/source/tests/metacall_ruby_fail_empty_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_fail_empty_test/source/metacall_ruby_fail_empty_test.cpp b/source/tests/metacall_ruby_fail_empty_test/source/metacall_ruby_fail_empty_test.cpp index d34ea9246..b9cb7dfd2 100644 --- a/source/tests/metacall_ruby_fail_empty_test/source/metacall_ruby_fail_empty_test.cpp +++ b/source/tests/metacall_ruby_fail_empty_test/source/metacall_ruby_fail_empty_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_fail_test/source/main.cpp b/source/tests/metacall_ruby_fail_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_ruby_fail_test/source/main.cpp +++ b/source/tests/metacall_ruby_fail_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_fail_test/source/metacall_ruby_fail_test.cpp b/source/tests/metacall_ruby_fail_test/source/metacall_ruby_fail_test.cpp index 5823732d2..b7228a7e9 100644 --- a/source/tests/metacall_ruby_fail_test/source/metacall_ruby_fail_test.cpp +++ b/source/tests/metacall_ruby_fail_test/source/metacall_ruby_fail_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_object_class_test/source/main.cpp b/source/tests/metacall_ruby_object_class_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_ruby_object_class_test/source/main.cpp +++ b/source/tests/metacall_ruby_object_class_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_object_class_test/source/metacall_ruby_object_class_test.cpp b/source/tests/metacall_ruby_object_class_test/source/metacall_ruby_object_class_test.cpp index 3ce12e3c5..ca8ca3c14 100644 --- a/source/tests/metacall_ruby_object_class_test/source/metacall_ruby_object_class_test.cpp +++ b/source/tests/metacall_ruby_object_class_test/source/metacall_ruby_object_class_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_parser_integration_test/source/main.cpp b/source/tests/metacall_ruby_parser_integration_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_ruby_parser_integration_test/source/main.cpp +++ b/source/tests/metacall_ruby_parser_integration_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_parser_integration_test/source/metacall_ruby_parser_integration_test.cpp b/source/tests/metacall_ruby_parser_integration_test/source/metacall_ruby_parser_integration_test.cpp index 321cbdbc1..e9fd2d082 100644 --- a/source/tests/metacall_ruby_parser_integration_test/source/metacall_ruby_parser_integration_test.cpp +++ b/source/tests/metacall_ruby_parser_integration_test/source/metacall_ruby_parser_integration_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_rails_integration_test/source/main.cpp b/source/tests/metacall_ruby_rails_integration_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_ruby_rails_integration_test/source/main.cpp +++ b/source/tests/metacall_ruby_rails_integration_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_rails_integration_test/source/metacall_ruby_rails_integration_test.cpp b/source/tests/metacall_ruby_rails_integration_test/source/metacall_ruby_rails_integration_test.cpp index 81db53c5f..91fb3fb4c 100644 --- a/source/tests/metacall_ruby_rails_integration_test/source/metacall_ruby_rails_integration_test.cpp +++ b/source/tests/metacall_ruby_rails_integration_test/source/metacall_ruby_rails_integration_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_test/source/main.cpp b/source/tests/metacall_ruby_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_ruby_test/source/main.cpp +++ b/source/tests/metacall_ruby_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_ruby_test/source/metacall_ruby_test.cpp b/source/tests/metacall_ruby_test/source/metacall_ruby_test.cpp index 122596ed5..e22eb5dbb 100644 --- a/source/tests/metacall_ruby_test/source/metacall_ruby_test.cpp +++ b/source/tests/metacall_ruby_test/source/metacall_ruby_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_class_test/source/main.cpp b/source/tests/metacall_rust_class_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_rust_class_test/source/main.cpp +++ b/source/tests/metacall_rust_class_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_class_test/source/metacall_rust_class_test.cpp b/source/tests/metacall_rust_class_test/source/metacall_rust_class_test.cpp index c6c59409b..64d4627bf 100644 --- a/source/tests/metacall_rust_class_test/source/metacall_rust_class_test.cpp +++ b/source/tests/metacall_rust_class_test/source/metacall_rust_class_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_load_from_mem_test/source/main.cpp b/source/tests/metacall_rust_load_from_mem_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_rust_load_from_mem_test/source/main.cpp +++ b/source/tests/metacall_rust_load_from_mem_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_load_from_mem_test/source/metacall_rust_load_from_mem_test.cpp b/source/tests/metacall_rust_load_from_mem_test/source/metacall_rust_load_from_mem_test.cpp index 9f64f6c63..fccdcee34 100644 --- a/source/tests/metacall_rust_load_from_mem_test/source/metacall_rust_load_from_mem_test.cpp +++ b/source/tests/metacall_rust_load_from_mem_test/source/metacall_rust_load_from_mem_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_load_from_package_class_test/source/main.cpp b/source/tests/metacall_rust_load_from_package_class_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_rust_load_from_package_class_test/source/main.cpp +++ b/source/tests/metacall_rust_load_from_package_class_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_load_from_package_class_test/source/metacall_rust_load_from_package_class_test.cpp b/source/tests/metacall_rust_load_from_package_class_test/source/metacall_rust_load_from_package_class_test.cpp index 8575feecf..db6f6de38 100644 --- a/source/tests/metacall_rust_load_from_package_class_test/source/metacall_rust_load_from_package_class_test.cpp +++ b/source/tests/metacall_rust_load_from_package_class_test/source/metacall_rust_load_from_package_class_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_load_from_package_dep_test/source/main.cpp b/source/tests/metacall_rust_load_from_package_dep_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_rust_load_from_package_dep_test/source/main.cpp +++ b/source/tests/metacall_rust_load_from_package_dep_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_load_from_package_dep_test/source/metacall_rust_load_from_package_dep_test.cpp b/source/tests/metacall_rust_load_from_package_dep_test/source/metacall_rust_load_from_package_dep_test.cpp index 1c2194e45..c239fd1cc 100644 --- a/source/tests/metacall_rust_load_from_package_dep_test/source/metacall_rust_load_from_package_dep_test.cpp +++ b/source/tests/metacall_rust_load_from_package_dep_test/source/metacall_rust_load_from_package_dep_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_load_from_package_test/source/main.cpp b/source/tests/metacall_rust_load_from_package_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_rust_load_from_package_test/source/main.cpp +++ b/source/tests/metacall_rust_load_from_package_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_load_from_package_test/source/metacall_rust_load_from_package_test.cpp b/source/tests/metacall_rust_load_from_package_test/source/metacall_rust_load_from_package_test.cpp index 067305426..7f639f4bc 100644 --- a/source/tests/metacall_rust_load_from_package_test/source/metacall_rust_load_from_package_test.cpp +++ b/source/tests/metacall_rust_load_from_package_test/source/metacall_rust_load_from_package_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_test/source/main.cpp b/source/tests/metacall_rust_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/metacall_rust_test/source/main.cpp +++ b/source/tests/metacall_rust_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_rust_test/source/metacall_rust_test.cpp b/source/tests/metacall_rust_test/source/metacall_rust_test.cpp index a258c23ca..cbe3e2ef9 100644 --- a/source/tests/metacall_rust_test/source/metacall_rust_test.cpp +++ b/source/tests/metacall_rust_test/source/metacall_rust_test.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_sandbox_plugin_test/source/main.cpp b/source/tests/metacall_sandbox_plugin_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_sandbox_plugin_test/source/main.cpp +++ b/source/tests/metacall_sandbox_plugin_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_sandbox_plugin_test/source/metacall_sandbox_plugin_test.cpp b/source/tests/metacall_sandbox_plugin_test/source/metacall_sandbox_plugin_test.cpp index ffb4e7dfa..1a0ad47b9 100644 --- a/source/tests/metacall_sandbox_plugin_test/source/metacall_sandbox_plugin_test.cpp +++ b/source/tests/metacall_sandbox_plugin_test/source/metacall_sandbox_plugin_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_test/source/main.cpp b/source/tests/metacall_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_test/source/main.cpp +++ b/source/tests/metacall_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_test/source/metacall_test.cpp b/source/tests/metacall_test/source/metacall_test.cpp index 831cb2926..6cd27eb32 100644 --- a/source/tests/metacall_test/source/metacall_test.cpp +++ b/source/tests/metacall_test/source/metacall_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_test/source/metacall_test_split.cpp b/source/tests/metacall_test/source/metacall_test_split.cpp index 09e954e22..1064365b1 100644 --- a/source/tests/metacall_test/source/metacall_test_split.cpp +++ b/source/tests/metacall_test/source/metacall_test_split.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_call_map_test/source/main.cpp b/source/tests/metacall_typescript_call_map_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_typescript_call_map_test/source/main.cpp +++ b/source/tests/metacall_typescript_call_map_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_call_map_test/source/metacall_typescript_call_map_test.cpp b/source/tests/metacall_typescript_call_map_test/source/metacall_typescript_call_map_test.cpp index 64d039f17..923f8e048 100644 --- a/source/tests/metacall_typescript_call_map_test/source/metacall_typescript_call_map_test.cpp +++ b/source/tests/metacall_typescript_call_map_test/source/metacall_typescript_call_map_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_jsx_default_test/source/main.cpp b/source/tests/metacall_typescript_jsx_default_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_typescript_jsx_default_test/source/main.cpp +++ b/source/tests/metacall_typescript_jsx_default_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_jsx_default_test/source/metacall_typescript_jsx_default_test.cpp b/source/tests/metacall_typescript_jsx_default_test/source/metacall_typescript_jsx_default_test.cpp index 1978e43bd..7ac88e6da 100644 --- a/source/tests/metacall_typescript_jsx_default_test/source/metacall_typescript_jsx_default_test.cpp +++ b/source/tests/metacall_typescript_jsx_default_test/source/metacall_typescript_jsx_default_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_node_test/source/main.cpp b/source/tests/metacall_typescript_node_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_typescript_node_test/source/main.cpp +++ b/source/tests/metacall_typescript_node_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_node_test/source/metacall_typescript_node_test.cpp b/source/tests/metacall_typescript_node_test/source/metacall_typescript_node_test.cpp index daa0c5e1c..9f51a73c4 100644 --- a/source/tests/metacall_typescript_node_test/source/metacall_typescript_node_test.cpp +++ b/source/tests/metacall_typescript_node_test/source/metacall_typescript_node_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_require_test/source/main.cpp b/source/tests/metacall_typescript_require_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_typescript_require_test/source/main.cpp +++ b/source/tests/metacall_typescript_require_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_require_test/source/metacall_typescript_require_test.cpp b/source/tests/metacall_typescript_require_test/source/metacall_typescript_require_test.cpp index 6374a7091..8ec87717f 100644 --- a/source/tests/metacall_typescript_require_test/source/metacall_typescript_require_test.cpp +++ b/source/tests/metacall_typescript_require_test/source/metacall_typescript_require_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_test/source/main.cpp b/source/tests/metacall_typescript_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_typescript_test/source/main.cpp +++ b/source/tests/metacall_typescript_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_test/source/metacall_typescript_test.cpp b/source/tests/metacall_typescript_test/source/metacall_typescript_test.cpp index e27fae80d..60d186821 100644 --- a/source/tests/metacall_typescript_test/source/metacall_typescript_test.cpp +++ b/source/tests/metacall_typescript_test/source/metacall_typescript_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_tsx_loop_fail_test/source/main.cpp b/source/tests/metacall_typescript_tsx_loop_fail_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_typescript_tsx_loop_fail_test/source/main.cpp +++ b/source/tests/metacall_typescript_tsx_loop_fail_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_tsx_loop_fail_test/source/metacall_typescript_tsx_loop_fail_test.cpp b/source/tests/metacall_typescript_tsx_loop_fail_test/source/metacall_typescript_tsx_loop_fail_test.cpp index 11515766b..1635e15a0 100644 --- a/source/tests/metacall_typescript_tsx_loop_fail_test/source/metacall_typescript_tsx_loop_fail_test.cpp +++ b/source/tests/metacall_typescript_tsx_loop_fail_test/source/metacall_typescript_tsx_loop_fail_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_tsx_test/source/main.cpp b/source/tests/metacall_typescript_tsx_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_typescript_tsx_test/source/main.cpp +++ b/source/tests/metacall_typescript_tsx_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_typescript_tsx_test/source/metacall_typescript_tsx_test.cpp b/source/tests/metacall_typescript_tsx_test/source/metacall_typescript_tsx_test.cpp index cd411cab8..82a9dc0c6 100644 --- a/source/tests/metacall_typescript_tsx_test/source/metacall_typescript_tsx_test.cpp +++ b/source/tests/metacall_typescript_tsx_test/source/metacall_typescript_tsx_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_version_test/source/main.cpp b/source/tests/metacall_version_test/source/main.cpp index 628e40890..11ddf3f59 100644 --- a/source/tests/metacall_version_test/source/main.cpp +++ b/source/tests/metacall_version_test/source/main.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_version_test/source/metacall_version_test.cpp b/source/tests/metacall_version_test/source/metacall_version_test.cpp index b80198155..531e7bdd5 100644 --- a/source/tests/metacall_version_test/source/metacall_version_test.cpp +++ b/source/tests/metacall_version_test/source/metacall_version_test.cpp @@ -2,7 +2,7 @@ * MetaCall Library by Parra Studios * A library for providing a foreign function interface calls. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_wasm_python_port_test/source/main.cpp b/source/tests/metacall_wasm_python_port_test/source/main.cpp index 388e97e98..31f757ddc 100644 --- a/source/tests/metacall_wasm_python_port_test/source/main.cpp +++ b/source/tests/metacall_wasm_python_port_test/source/main.cpp @@ -1,7 +1,7 @@ /* * WebAssembly Loader Tests by Parra Studios * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_wasm_python_port_test/source/metacall_wasm_python_port_test.cpp b/source/tests/metacall_wasm_python_port_test/source/metacall_wasm_python_port_test.cpp index 6e67008bb..7896135fe 100644 --- a/source/tests/metacall_wasm_python_port_test/source/metacall_wasm_python_port_test.cpp +++ b/source/tests/metacall_wasm_python_port_test/source/metacall_wasm_python_port_test.cpp @@ -1,7 +1,7 @@ /* * WebAssembly Loader Tests by Parra Studios * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_wasm_test/source/main.cpp b/source/tests/metacall_wasm_test/source/main.cpp index 388e97e98..31f757ddc 100644 --- a/source/tests/metacall_wasm_test/source/main.cpp +++ b/source/tests/metacall_wasm_test/source/main.cpp @@ -1,7 +1,7 @@ /* * WebAssembly Loader Tests by Parra Studios * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/metacall_wasm_test/source/metacall_wasm_test.cpp b/source/tests/metacall_wasm_test/source/metacall_wasm_test.cpp index 8407e5af2..efa6bbb60 100644 --- a/source/tests/metacall_wasm_test/source/metacall_wasm_test.cpp +++ b/source/tests/metacall_wasm_test/source/metacall_wasm_test.cpp @@ -1,7 +1,7 @@ /* * WebAssembly Loader Tests by Parra Studios * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/portability_path_test/source/main.cpp b/source/tests/portability_path_test/source/main.cpp index 6d87a8b6c..1888b3214 100644 --- a/source/tests/portability_path_test/source/main.cpp +++ b/source/tests/portability_path_test/source/main.cpp @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/portability_path_test/source/portability_path_test.cpp b/source/tests/portability_path_test/source/portability_path_test.cpp index 17c38af13..f49756348 100644 --- a/source/tests/portability_path_test/source/portability_path_test.cpp +++ b/source/tests/portability_path_test/source/portability_path_test.cpp @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios -* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia +* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A library for loading executable code at run-time into a process. * diff --git a/source/tests/preprocessor_test/source/main.cpp b/source/tests/preprocessor_test/source/main.cpp index 53e0b4be4..d678d80ae 100644 --- a/source/tests/preprocessor_test/source/main.cpp +++ b/source/tests/preprocessor_test/source/main.cpp @@ -2,7 +2,7 @@ * Logger Library by Parra Studios * A generic logger library providing application execution reports. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/preprocessor_test/source/preprocessor_test.cpp b/source/tests/preprocessor_test/source/preprocessor_test.cpp index 1d344a4b0..1c5bf3e61 100644 --- a/source/tests/preprocessor_test/source/preprocessor_test.cpp +++ b/source/tests/preprocessor_test/source/preprocessor_test.cpp @@ -2,7 +2,7 @@ * Preprocssor Library by Parra Studios * A generic header-only preprocessor metaprogramming library. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/rb_loader_parser_test/source/main.cpp b/source/tests/rb_loader_parser_test/source/main.cpp index 4676e4763..4537c68d3 100644 --- a/source/tests/rb_loader_parser_test/source/main.cpp +++ b/source/tests/rb_loader_parser_test/source/main.cpp @@ -2,7 +2,7 @@ * Loader Library by Parra Studios * A plugin for loading ruby code at run-time into a process. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/rb_loader_parser_test/source/rb_loader_parser_test.cpp b/source/tests/rb_loader_parser_test/source/rb_loader_parser_test.cpp index f5aca818b..98066bc98 100644 --- a/source/tests/rb_loader_parser_test/source/rb_loader_parser_test.cpp +++ b/source/tests/rb_loader_parser_test/source/rb_loader_parser_test.cpp @@ -1,6 +1,6 @@ /* * Loader Library by Parra Studios - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * A plugin for loading ruby code at run-time into a process. * diff --git a/source/tests/reflect_function_test/source/main.cpp b/source/tests/reflect_function_test/source/main.cpp index ffd930f05..718fa2707 100644 --- a/source/tests/reflect_function_test/source/main.cpp +++ b/source/tests/reflect_function_test/source/main.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_function_test/source/reflect_function_test.cpp b/source/tests/reflect_function_test/source/reflect_function_test.cpp index bfbd107c6..eea934927 100644 --- a/source/tests/reflect_function_test/source/reflect_function_test.cpp +++ b/source/tests/reflect_function_test/source/reflect_function_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_metadata_test/source/main.cpp b/source/tests/reflect_metadata_test/source/main.cpp index ffd930f05..718fa2707 100644 --- a/source/tests/reflect_metadata_test/source/main.cpp +++ b/source/tests/reflect_metadata_test/source/main.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_metadata_test/source/reflect_metadata_test.cpp b/source/tests/reflect_metadata_test/source/reflect_metadata_test.cpp index d06de7589..32747c825 100644 --- a/source/tests/reflect_metadata_test/source/reflect_metadata_test.cpp +++ b/source/tests/reflect_metadata_test/source/reflect_metadata_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_object_class_test/source/main.cpp b/source/tests/reflect_object_class_test/source/main.cpp index ffd930f05..718fa2707 100644 --- a/source/tests/reflect_object_class_test/source/main.cpp +++ b/source/tests/reflect_object_class_test/source/main.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_object_class_test/source/reflect_object_class_test.cpp b/source/tests/reflect_object_class_test/source/reflect_object_class_test.cpp index 512742070..275713e5f 100644 --- a/source/tests/reflect_object_class_test/source/reflect_object_class_test.cpp +++ b/source/tests/reflect_object_class_test/source/reflect_object_class_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_scope_test/source/main.cpp b/source/tests/reflect_scope_test/source/main.cpp index ffd930f05..718fa2707 100644 --- a/source/tests/reflect_scope_test/source/main.cpp +++ b/source/tests/reflect_scope_test/source/main.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_scope_test/source/reflect_scope_test.cpp b/source/tests/reflect_scope_test/source/reflect_scope_test.cpp index 947622a4f..528715925 100644 --- a/source/tests/reflect_scope_test/source/reflect_scope_test.cpp +++ b/source/tests/reflect_scope_test/source/reflect_scope_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_value_cast_test/source/main.cpp b/source/tests/reflect_value_cast_test/source/main.cpp index ffd930f05..718fa2707 100644 --- a/source/tests/reflect_value_cast_test/source/main.cpp +++ b/source/tests/reflect_value_cast_test/source/main.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_value_cast_test/source/reflect_value_cast_bool_test.cpp b/source/tests/reflect_value_cast_test/source/reflect_value_cast_bool_test.cpp index 05aefdf93..49770adaf 100644 --- a/source/tests/reflect_value_cast_test/source/reflect_value_cast_bool_test.cpp +++ b/source/tests/reflect_value_cast_test/source/reflect_value_cast_bool_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_value_cast_test/source/reflect_value_cast_char_test.cpp b/source/tests/reflect_value_cast_test/source/reflect_value_cast_char_test.cpp index f2d746a4d..35d20ad94 100644 --- a/source/tests/reflect_value_cast_test/source/reflect_value_cast_char_test.cpp +++ b/source/tests/reflect_value_cast_test/source/reflect_value_cast_char_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_value_cast_test/source/reflect_value_cast_double_test.cpp b/source/tests/reflect_value_cast_test/source/reflect_value_cast_double_test.cpp index e65687193..7d7fad6cb 100644 --- a/source/tests/reflect_value_cast_test/source/reflect_value_cast_double_test.cpp +++ b/source/tests/reflect_value_cast_test/source/reflect_value_cast_double_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_value_cast_test/source/reflect_value_cast_float_test.cpp b/source/tests/reflect_value_cast_test/source/reflect_value_cast_float_test.cpp index 1db00a44a..8c543a381 100644 --- a/source/tests/reflect_value_cast_test/source/reflect_value_cast_float_test.cpp +++ b/source/tests/reflect_value_cast_test/source/reflect_value_cast_float_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_value_cast_test/source/reflect_value_cast_int_test.cpp b/source/tests/reflect_value_cast_test/source/reflect_value_cast_int_test.cpp index 171144f7e..9d5a67abb 100644 --- a/source/tests/reflect_value_cast_test/source/reflect_value_cast_int_test.cpp +++ b/source/tests/reflect_value_cast_test/source/reflect_value_cast_int_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_value_cast_test/source/reflect_value_cast_long_test.cpp b/source/tests/reflect_value_cast_test/source/reflect_value_cast_long_test.cpp index ffa72d1cf..fa5ea251a 100644 --- a/source/tests/reflect_value_cast_test/source/reflect_value_cast_long_test.cpp +++ b/source/tests/reflect_value_cast_test/source/reflect_value_cast_long_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/reflect_value_cast_test/source/reflect_value_cast_short_test.cpp b/source/tests/reflect_value_cast_test/source/reflect_value_cast_short_test.cpp index 0b613a2be..48211f3cb 100644 --- a/source/tests/reflect_value_cast_test/source/reflect_value_cast_short_test.cpp +++ b/source/tests/reflect_value_cast_test/source/reflect_value_cast_short_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/serial_test/source/main.cpp b/source/tests/serial_test/source/main.cpp index ffd930f05..718fa2707 100644 --- a/source/tests/serial_test/source/main.cpp +++ b/source/tests/serial_test/source/main.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/tests/serial_test/source/serial_test.cpp b/source/tests/serial_test/source/serial_test.cpp index a5ede3b77..c2216a5b8 100644 --- a/source/tests/serial_test/source/serial_test.cpp +++ b/source/tests/serial_test/source/serial_test.cpp @@ -2,7 +2,7 @@ * Reflect Library by Parra Studios * A library for provide reflection and metadata representation. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/include/threading/threading.h b/source/threading/include/threading/threading.h index 3a3e6b195..f79566a1b 100644 --- a/source/threading/include/threading/threading.h +++ b/source/threading/include/threading/threading.h @@ -2,7 +2,7 @@ * Thrading Library by Parra Studios * A threading library providing utilities for lock-free data structures and more. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/include/threading/threading_atomic.h b/source/threading/include/threading/threading_atomic.h index 98ba0da14..a2b870d3a 100644 --- a/source/threading/include/threading/threading_atomic.h +++ b/source/threading/include/threading/threading_atomic.h @@ -2,7 +2,7 @@ * Thrading Library by Parra Studios * A threading library providing utilities for lock-free data structures and more. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/include/threading/threading_atomic_ref_count.h b/source/threading/include/threading/threading_atomic_ref_count.h index 139898ac2..afdae715b 100644 --- a/source/threading/include/threading/threading_atomic_ref_count.h +++ b/source/threading/include/threading/threading_atomic_ref_count.h @@ -2,7 +2,7 @@ * Thrading Library by Parra Studios * A threading library providing utilities for lock-free data structures and more. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/include/threading/threading_atomic_win32.h b/source/threading/include/threading/threading_atomic_win32.h index 895838e72..0686f9a00 100644 --- a/source/threading/include/threading/threading_atomic_win32.h +++ b/source/threading/include/threading/threading_atomic_win32.h @@ -2,7 +2,7 @@ * Thrading Library by Parra Studios * A threading library providing utilities for lock-free data structures and more. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/include/threading/threading_mutex.h b/source/threading/include/threading/threading_mutex.h index 29f5163de..174e5772e 100644 --- a/source/threading/include/threading/threading_mutex.h +++ b/source/threading/include/threading/threading_mutex.h @@ -2,7 +2,7 @@ * Thrading Library by Parra Studios * A threading library providing utilities for lock-free data structures and more. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/include/threading/threading_thread_id.h b/source/threading/include/threading/threading_thread_id.h index b56bc8405..1545e0faa 100644 --- a/source/threading/include/threading/threading_thread_id.h +++ b/source/threading/include/threading/threading_thread_id.h @@ -2,7 +2,7 @@ * Thrading Library by Parra Studios * A threading library providing utilities for lock-free data structures and more. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/source/threading.c b/source/threading/source/threading.c index 836682341..0d82cd305 100644 --- a/source/threading/source/threading.c +++ b/source/threading/source/threading.c @@ -2,7 +2,7 @@ * Thrading Library by Parra Studios * A threading library providing utilities for lock-free data structures and more. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ const char *threading_print_info(void) { static const char threading_info[] = "Threading Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef ADT_STATIC_DEFINE "Compiled as static library type" diff --git a/source/threading/source/threading_mutex_macos.c b/source/threading/source/threading_mutex_macos.c index 04ab7eaa7..e8fe44047 100644 --- a/source/threading/source/threading_mutex_macos.c +++ b/source/threading/source/threading_mutex_macos.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/source/threading_mutex_pthread.c b/source/threading/source/threading_mutex_pthread.c index b089c81f2..3a288830e 100644 --- a/source/threading/source/threading_mutex_pthread.c +++ b/source/threading/source/threading_mutex_pthread.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/source/threading_mutex_win32.c b/source/threading/source/threading_mutex_win32.c index 9c0338538..16739c50d 100644 --- a/source/threading/source/threading_mutex_win32.c +++ b/source/threading/source/threading_mutex_win32.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/threading/source/threading_thread_id.c b/source/threading/source/threading_thread_id.c index 9c6f1f00f..e3fa8030b 100644 --- a/source/threading/source/threading_thread_id.c +++ b/source/threading/source/threading_thread_id.c @@ -2,7 +2,7 @@ * Abstract Data Type Library by Parra Studios * A abstract data type library providing generic containers. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/version/include/version/version.h b/source/version/include/version/version.h index 2d9273a8e..9c0dbcd3d 100644 --- a/source/version/include/version/version.h +++ b/source/version/include/version/version.h @@ -2,7 +2,7 @@ * CMake Versioning Utility by Parra Studios * A template for generating versioning utilities. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/version/include/version/version.h.in b/source/version/include/version/version.h.in index eb5e8fd80..79a37cfd0 100644 --- a/source/version/include/version/version.h.in +++ b/source/version/include/version/version.h.in @@ -2,7 +2,7 @@ * CMake Versioning Utility by Parra Studios * A template for generating versioning utilities. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * 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/source/version/source/version.c b/source/version/source/version.c index f36fdb7c4..3dca24831 100644 --- a/source/version/source/version.c +++ b/source/version/source/version.c @@ -2,7 +2,7 @@ * CMake Versioning Utility by Parra Studios * A template for generating versioning utilities. * - * Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia + * Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,7 +26,7 @@ const char *version_print_info(void) { static const char version_info[] = "Version Library " METACALL_VERSION "\n" - "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia \n" + "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia \n" #ifdef ADT_STATIC_DEFINE "Compiled as static library type"