Skip to content

Commit

Permalink
Change version to 3.1 as preparation for release (#552)
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 authored Feb 24, 2023
1 parent bd12ff5 commit 70db050
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1-develop
3.1
2 changes: 1 addition & 1 deletion docs-gen/layouts/partials/menu-footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/covesa/vehicle_signal_specification/fork" data-icon="octicon-repo-forked" data-show-count="true" aria-label="Fork matcornic/hugo-theme-learn on GitHub">Fork</a>

Latest Released Version: 3.0
Latest Released Version: 3.1
</center>
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
2 changes: 1 addition & 1 deletion spec/Vehicle/Vehicle.vspec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ VersionVSS.Patch:
VersionVSS.Label:
datatype: string
type: attribute
default: 'develop'
default: ''
description: Label to further describe the version.

#
Expand Down
2 changes: 1 addition & 1 deletion vss-tools
Submodule vss-tools updated 80 files
+2 −0 .flake8
+17 −1 .github/workflows/buildcheck.yml
+2 −1 .gitignore
+15 −0 .pre-commit-config.yaml
+31 −6 CHANGELOG.md
+3 −0 Pipfile
+197 −24 Pipfile.lock
+69 −28 README.md
+1 −1 binary/README.md
+5 −0 binary/go_parser/go.sum
+10 −18 contrib/vspec2protobuf.py
+84 −90 contrib/vspec2ttl/vspec2ttl.py
+103 −27 docs/vspec2x.md
+104 −0 docs/vspec2x_arch.md
+2 −1 setup.py
+69 −53 tests/instances/test_instances.py
+167 −124 tests/model/test_contants.py
+93 −40 tests/model/test_vsstree.py
+7 −0 tests/vspec/test_allowed/expected.csv
+35 −0 tests/vspec/test_allowed/expected.ddsidl
+46 −0 tests/vspec/test_allowed/expected.franca
+62 −0 tests/vspec/test_allowed/expected.graphql
+1 −0 tests/vspec/test_allowed/expected.json
+38 −0 tests/vspec/test_allowed/expected.yaml
+29 −0 tests/vspec/test_allowed/test.vspec
+51 −0 tests/vspec/test_allowed/test_allowed.py
+10 −0 tests/vspec/test_datatypes_error/test.vspec
+35 −0 tests/vspec/test_datatypes_error/test_datatypes_error.py
+3 −1 tests/vspec/test_faulty_type/test_faulty_type.py
+38 −0 tests/vspec/test_include/expected.json
+6 −0 tests/vspec/test_include/include.vspec
+11 −0 tests/vspec/test_include/include_b.vspec
+6 −0 tests/vspec/test_include/include_c.vspec
+19 −0 tests/vspec/test_include/test.vspec
+24 −0 tests/vspec/test_include/test_error.vspec
+55 −0 tests/vspec/test_include/test_include.py
+14 −0 tests/vspec/test_instances/expected.csv
+59 −0 tests/vspec/test_instances/expected.ddsidl
+74 −0 tests/vspec/test_instances/expected.franca
+116 −0 tests/vspec/test_instances/expected.graphql
+1 −0 tests/vspec/test_instances/expected.json
+66 −0 tests/vspec/test_instances/expected.yaml
+19 −0 tests/vspec/test_instances/test.vspec
+18 −1 tests/vspec/test_overlay/expected.json
+11 −1 tests/vspec/test_overlay/overlay_explicit_branches.vspec
+11 −1 tests/vspec/test_overlay/overlay_implicit_branches.vspec
+13 −7 tests/vspec/test_overlay/test_overlay.py
+255 −0 tests/vspec/test_overlay_on_instance/expected.json
+15 −0 tests/vspec/test_overlay_on_instance/overlay_1.vspec
+79 −0 tests/vspec/test_overlay_on_instance/overlay_2.vspec
+35 −0 tests/vspec/test_overlay_on_instance/test.vspec
+33 −0 tests/vspec/test_overlay_on_instance/test_overlay_on_instance.py
+48 −0 tests/vspec/test_structs/TestBranch1.vspec
+10 −0 tests/vspec/test_structs/VehicleDataTypes.vspec
+21 −0 tests/vspec/test_structs/VehicleDataTypesInvalidStruct.vspec
+25 −0 tests/vspec/test_structs/VehicleDataTypesInvalidStructWithOrphanProperties.vspec
+26 −0 tests/vspec/test_structs/VehicleDataTypesInvalidStructWithQualifiedName.vspec
+25 −0 tests/vspec/test_structs/VehicleDataTypesStructWithDataType.vspec
+24 −0 tests/vspec/test_structs/expected-signals.json
+66 −0 tests/vspec/test_structs/expected.json
+22 −0 tests/vspec/test_structs/test-invalid-datatypes.vspec
+22 −0 tests/vspec/test_structs/test.vspec
+83 −0 tests/vspec/test_structs/test_commandline.py
+146 −0 tests/vspec/test_structs/test_data_type_parsing.py
+17 −8 tests/vspec/test_types_with_uuid/test_uuid.py
+9 −9 tests/vspec/test_units/test_units.py
+441 −214 vspec/__init__.py
+16 −0 vspec/loggingconfig.py
+43 −19 vspec/model/constants.py
+35 −0 vspec/model/exceptions.py
+246 −101 vspec/model/vsstree.py
+0 −0 vspec/py.typed
+0 −0 vspec/utils/__init__.py
+23 −0 vspec/utils/stringstyle.py
+19 −13 vspec/vssexporters/vss2csv.py
+9 −7 vspec/vssexporters/vss2ddsidl.py
+15 −12 vspec/vssexporters/vss2franca.py
+16 −16 vspec/vssexporters/vss2graphql.py
+32 −19 vspec/vssexporters/vss2json.py
+100 −39 vspec2x.py

0 comments on commit 70db050

Please sign in to comment.