diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e597018..ce08b60 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,7 +9,7 @@ repos: exclude_types: [csv, json] - repo: https://github.com/charliermarsh/ruff-pre-commit # Ruff version. - rev: 'v0.2.0' + rev: 'v0.2.1' hooks: - id: ruff # in CI it is directly run by tox to allow dependency upgrade checks diff --git a/requirements_testing.txt b/requirements_testing.txt index b41d4e4..bf84998 100644 --- a/requirements_testing.txt +++ b/requirements_testing.txt @@ -4,7 +4,7 @@ pylint==3.0.3 pytest==8.0.0 pytest-cov==4.1.0 pytest-icdiff==0.9 -ruff==0.2.0 +ruff==0.2.1 setuptools==69.0.3 tox==4.12.1 tox-gh-actions==3.2.0 diff --git a/test/resources/stubs/ets6_free.json b/test/resources/stubs/ets6_free.json index 11d22ff..04cafff 100644 --- a/test/resources/stubs/ets6_free.json +++ b/test/resources/stubs/ets6_free.json @@ -8,7 +8,7 @@ "created_by": "ETS6", "schema_version": "22", "tool_version": "6.1.5686.0", - "xknxproject_version": "3.5.0", + "xknxproject_version": "3.6.0", "language_code": "de-DE" }, "communication_objects": {}, diff --git a/test/resources/stubs/ets6_two_level.json b/test/resources/stubs/ets6_two_level.json index 1a712da..964846a 100644 --- a/test/resources/stubs/ets6_two_level.json +++ b/test/resources/stubs/ets6_two_level.json @@ -8,7 +8,7 @@ "created_by": "ETS6", "schema_version": "22", "tool_version": "6.1.5686.0", - "xknxproject_version": "3.5.0", + "xknxproject_version": "3.6.0", "language_code": "de-DE" }, "communication_objects": {}, diff --git a/test/resources/stubs/module-definition-test.json b/test/resources/stubs/module-definition-test.json index 948b330..e82595d 100644 --- a/test/resources/stubs/module-definition-test.json +++ b/test/resources/stubs/module-definition-test.json @@ -8,7 +8,7 @@ "created_by": "ETS5", "schema_version": "20", "tool_version": "5.7.1428.39779", - "xknxproject_version": "3.5.0", + "xknxproject_version": "3.6.0", "language_code": "de-DE" }, "communication_objects": { diff --git a/test/resources/stubs/test_project-ets4.json b/test/resources/stubs/test_project-ets4.json index 0a7ee86..ae02ee0 100644 --- a/test/resources/stubs/test_project-ets4.json +++ b/test/resources/stubs/test_project-ets4.json @@ -8,7 +8,7 @@ "created_by": "ETS4", "schema_version": "11", "tool_version": "ETS 4.2.0 (Build 3884)", - "xknxproject_version": "3.5.0", + "xknxproject_version": "3.6.0", "language_code": "de-DE" }, "communication_objects": { diff --git a/test/resources/stubs/testprojekt-ets6-functions.json b/test/resources/stubs/testprojekt-ets6-functions.json index 7ade5ee..bd2ebd7 100644 --- a/test/resources/stubs/testprojekt-ets6-functions.json +++ b/test/resources/stubs/testprojekt-ets6-functions.json @@ -8,7 +8,7 @@ "created_by": "ETS6", "schema_version": "22", "tool_version": "6.1.5686.0", - "xknxproject_version": "3.5.0", + "xknxproject_version": "3.6.0", "language_code": "de-DE" }, "communication_objects": {}, diff --git a/test/resources/stubs/xknx_test_project.json b/test/resources/stubs/xknx_test_project.json index 9a11036..164f989 100644 --- a/test/resources/stubs/xknx_test_project.json +++ b/test/resources/stubs/xknx_test_project.json @@ -8,7 +8,7 @@ "created_by": "ETS5", "schema_version": "20", "tool_version": "5.7.1428.39779", - "xknxproject_version": "3.5.0", + "xknxproject_version": "3.6.0", "language_code": null }, "communication_objects": { diff --git a/xknxproject/__version__.py b/xknxproject/__version__.py index eba0f81..bdc37d7 100644 --- a/xknxproject/__version__.py +++ b/xknxproject/__version__.py @@ -1,3 +1,3 @@ """ETS Project parser version.""" -__version__ = "3.5.0" +__version__ = "3.6.0"