diff --git a/mkdocs.yml b/mkdocs.yml index 8662e9e..9dd40c3 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -3,7 +3,7 @@ site_url: https://github.com/cloudblue/lib-rql repo_name: cloudblue/lib-rql repo_url: https://github.com/cloudblue/lib-rql edit_uri: "" -copyright: Copyright © 2023 Ingram Micro. All Rights Reserved. +copyright: Copyright © 2025 CloudBlue. All Rights Reserved. extra: generator: false social: diff --git a/py_rql/__init__.py b/py_rql/__init__.py index 258f332..22246fe 100644 --- a/py_rql/__init__.py +++ b/py_rql/__init__.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from py_rql.parser import RQLParser diff --git a/py_rql/cast.py b/py_rql/cast.py index 0d436a0..4ffb1f9 100644 --- a/py_rql/cast.py +++ b/py_rql/cast.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from decimal import Decimal diff --git a/py_rql/constants.py b/py_rql/constants.py index 7d3a5bb..b2e7d93 100644 --- a/py_rql/constants.py +++ b/py_rql/constants.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # RQL_ANY_SYMBOL = '*' diff --git a/py_rql/exceptions.py b/py_rql/exceptions.py index 757a239..28c594a 100644 --- a/py_rql/exceptions.py +++ b/py_rql/exceptions.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # diff --git a/py_rql/filter_cls.py b/py_rql/filter_cls.py index d4826bd..cfc73c4 100644 --- a/py_rql/filter_cls.py +++ b/py_rql/filter_cls.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from cachetools import LFUCache diff --git a/py_rql/grammar.py b/py_rql/grammar.py index 9de5099..b2ce656 100644 --- a/py_rql/grammar.py +++ b/py_rql/grammar.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # # flake8: noqa diff --git a/py_rql/helpers.py b/py_rql/helpers.py index 9e5f21a..b4bf1db 100644 --- a/py_rql/helpers.py +++ b/py_rql/helpers.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # def extract_value(obj, prop): current = obj diff --git a/py_rql/operators.py b/py_rql/operators.py index f040a4f..c0b9d62 100644 --- a/py_rql/operators.py +++ b/py_rql/operators.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from operator import ( # noqa: F401 eq, diff --git a/py_rql/parser.py b/py_rql/parser.py index 89dfc63..c9964e3 100644 --- a/py_rql/parser.py +++ b/py_rql/parser.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from threading import Lock diff --git a/py_rql/transformer.py b/py_rql/transformer.py index 5e8007e..7ec4901 100644 --- a/py_rql/transformer.py +++ b/py_rql/transformer.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import functools diff --git a/tests/__init__.py b/tests/__init__.py index ff53ddd..9977b27 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,3 +1,3 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # diff --git a/tests/conftest.py b/tests/conftest.py index 50beadb..c658a28 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest diff --git a/tests/test_constants.py b/tests/test_constants.py index 0901ec0..466a7fd 100644 --- a/tests/test_constants.py +++ b/tests/test_constants.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest diff --git a/tests/test_exceptions.py b/tests/test_exceptions.py index 09ef2b3..98276d5 100644 --- a/tests/test_exceptions.py +++ b/tests/test_exceptions.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest diff --git a/tests/test_filter_cls.py b/tests/test_filter_cls.py index bf261d3..fff0eab 100644 --- a/tests/test_filter_cls.py +++ b/tests/test_filter_cls.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest diff --git a/tests/test_helpers.py b/tests/test_helpers.py index 8e6fae2..d1886ea 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest diff --git a/tests/test_init.py b/tests/test_init.py index c4130bd..17d5a13 100644 --- a/tests/test_init.py +++ b/tests/test_init.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import time from threading import Thread diff --git a/tests/test_operators.py b/tests/test_operators.py index f3021f1..7f7aa71 100644 --- a/tests/test_operators.py +++ b/tests/test_operators.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest diff --git a/tests/test_parser/__init__.py b/tests/test_parser/__init__.py index ff53ddd..9977b27 100644 --- a/tests/test_parser/__init__.py +++ b/tests/test_parser/__init__.py @@ -1,3 +1,3 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # diff --git a/tests/test_parser/constants.py b/tests/test_parser/constants.py index 7add1e3..cb2b6d6 100644 --- a/tests/test_parser/constants.py +++ b/tests/test_parser/constants.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from py_rql.constants import ( diff --git a/tests/test_parser/test_caching.py b/tests/test_parser/test_caching.py index ea0c2f9..cb7e788 100644 --- a/tests/test_parser/test_caching.py +++ b/tests/test_parser/test_caching.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest diff --git a/tests/test_parser/test_comparison.py b/tests/test_parser/test_comparison.py index 8689843..e286f6e 100644 --- a/tests/test_parser/test_comparison.py +++ b/tests/test_parser/test_comparison.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from functools import partial diff --git a/tests/test_parser/test_listing.py b/tests/test_parser/test_listing.py index fded9fa..ca10870 100644 --- a/tests/test_parser/test_listing.py +++ b/tests/test_parser/test_listing.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest from lark.exceptions import LarkError diff --git a/tests/test_parser/test_logical.py b/tests/test_parser/test_logical.py index 3b56021..44070d7 100644 --- a/tests/test_parser/test_logical.py +++ b/tests/test_parser/test_logical.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from functools import partial diff --git a/tests/test_parser/test_ordering.py b/tests/test_parser/test_ordering.py index b4fa8d9..9c94aac 100644 --- a/tests/test_parser/test_ordering.py +++ b/tests/test_parser/test_ordering.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest from lark.exceptions import LarkError diff --git a/tests/test_parser/test_searching.py b/tests/test_parser/test_searching.py index c10514a..af3b64c 100644 --- a/tests/test_parser/test_searching.py +++ b/tests/test_parser/test_searching.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest from lark.exceptions import LarkError diff --git a/tests/test_parser/utils.py b/tests/test_parser/utils.py index f5a8b7c..8682078 100644 --- a/tests/test_parser/utils.py +++ b/tests/test_parser/utils.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from py_rql.transformer import BaseRQLTransformer diff --git a/tests/test_transformer/__init__.py b/tests/test_transformer/__init__.py index ff53ddd..9977b27 100644 --- a/tests/test_transformer/__init__.py +++ b/tests/test_transformer/__init__.py @@ -1,3 +1,3 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # diff --git a/tests/test_transformer/test_comparison.py b/tests/test_transformer/test_comparison.py index fee264c..002e9da 100644 --- a/tests/test_transformer/test_comparison.py +++ b/tests/test_transformer/test_comparison.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest diff --git a/tests/test_transformer/test_list.py b/tests/test_transformer/test_list.py index 11f1c90..67fd4b5 100644 --- a/tests/test_transformer/test_list.py +++ b/tests/test_transformer/test_list.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest diff --git a/tests/test_transformer/test_logical.py b/tests/test_transformer/test_logical.py index 05be51f..c0e1e72 100644 --- a/tests/test_transformer/test_logical.py +++ b/tests/test_transformer/test_logical.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # from unittest.mock import call diff --git a/tests/test_transformer/test_search.py b/tests/test_transformer/test_search.py index cd7fbf8..d63fc5c 100644 --- a/tests/test_transformer/test_search.py +++ b/tests/test_transformer/test_search.py @@ -1,5 +1,5 @@ # -# Copyright © 2023 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. # import pytest