Skip to content

Commit

Permalink
Updating submodule dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Jaegervall <erik.jaegervall@se.bosch.com>
  • Loading branch information
erikbosch committed Nov 14, 2023
1 parent e6104e3 commit 1eca8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vss-tools
Submodule vss-tools updated 68 files
+17 −0 .github/actions/verify-headers/action.yml
+38 −0 .github/actions/verify-headers/verify-headers.py
+28 −0 .github/workflows/check-header.yml
+1 −1 .pre-commit-config.yaml
+2 −3 CHANGELOG.md
+2 −2 README.md
+5 −7 contrib/vspec2ttl/vspec2ttl.py
+33 −8 docs/vspec2x.md
+9 −0 setup.py
+0 −2 tests/instances/resources/instance_exclude_node.vspec
+17 −0 tests/instances/resources/instance_extended_attribute.vspec
+30 −0 tests/instances/test_instances.py
+1 −1 tests/vspec/test_allowed/test_allowed.py
+1 −0 tests/vspec/test_comment/expected.jsonschema
+1 −0 tests/vspec/test_datatypes/expected.jsonschema
+1 −1 tests/vspec/test_datatypes_error/test.vspec
+11 −0 tests/vspec/test_datatypes_error/test_datatype_branch.vspec
+17 −1 tests/vspec/test_datatypes_error/test_datatypes_error.py
+2 −2 tests/vspec/test_default_unit/test_default_units.py
+2 −1 tests/vspec/test_generic.py
+2 −2 tests/vspec/test_include/test_include.py
+1 −0 tests/vspec/test_instances/expected.jsonschema
+1 −1 tests/vspec/test_overlay/test_overlay.py
+2 −2 tests/vspec/test_overlay_on_instance/test.vspec
+1 −1 tests/vspec/test_overlay_on_instance/test_overlay_on_instance.py
+2 −2 tests/vspec/test_overlay_struct/test_overlay_struct.py
+1 −1 tests/vspec/test_overlay_struct_array/test_overlay_struct_array.py
+1 −1 tests/vspec/test_struct_as_root/test_struct_as_root.py
+26 −0 tests/vspec/test_structs/VehicleDataTypesStructWithUnit.vspec
+0 −2 tests/vspec/test_structs/test-invalid-datatypes.vspec
+42 −0 tests/vspec/test_structs/test.idl
+0 −2 tests/vspec/test_structs/test.vspec
+0 −2 tests/vspec/test_structs/test2.vspec
+1 −1 tests/vspec/test_structs/test_commandline.py
+20 −14 tests/vspec/test_structs/test_data_type_parsing.py
+21 −0 tests/vspec/test_structs/test_with_unit_on_struct_signal.vspec
+1 −1 tests/vspec/test_type_error/test_type_error.py
+11 −22 tests/vspec/test_types_with_uuid/test_uuid.py
+7 −3 tests/vspec/test_units/test_units.py
+10 −0 tests/vspec/test_units/unit_on_branch.vspec
+6 −6 vspec/__init__.py
+7 −2 vspec/loggingconfig.py
+7 −0 vspec/model/__init__.py
+5 −4 vspec/model/constants.py
+5 −4 vspec/model/exceptions.py
+29 −18 vspec/model/vsstree.py
+7 −0 vspec/utils/__init__.py
+5 −4 vspec/utils/stringstyle.py
+7 −0 vspec/vssexporters/__init__.py
+6 −4 vspec/vssexporters/vss2binary.py
+6 −5 vspec/vssexporters/vss2csv.py
+107 −28 vspec/vssexporters/vss2ddsidl.py
+6 −4 vspec/vssexporters/vss2franca.py
+5 −4 vspec/vssexporters/vss2graphql.py
+6 −4 vspec/vssexporters/vss2json.py
+159 −0 vspec/vssexporters/vss2jsonschema.py
+6 −4 vspec/vssexporters/vss2protobuf.py
+6 −7 vspec/vssexporters/vss2yaml.py
+6 −5 vspec2binary.py
+6 −4 vspec2csv.py
+6 −4 vspec2ddsidl.py
+6 −4 vspec2franca.py
+6 −4 vspec2graphql.py
+6 −4 vspec2json.py
+19 −0 vspec2jsonschema.py
+8 −0 vspec2protobuf.py
+9 −15 vspec2x.py
+6 −4 vspec2yaml.py

0 comments on commit 1eca8d8

Please sign in to comment.