Skip to content

Commit

Permalink
Prepare master branch for 3.0 release (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbosch authored Aug 5, 2022
1 parent 3ed78f1 commit 9456798
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
6 changes: 4 additions & 2 deletions RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Each release is incrementally numbered, starting with 1.

A release is tagged in git with the tag

v[n]
v[m.n]

where [n] is the release number.
where [m.n] is the release number.

Detailed instructions on how releases are created can be found in the [Release Checklist](https://github.com/COVESA/vehicle_signal_specification/wiki/Release-Checklist).
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0-develop
3.0
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: 2.2
Latest Released Version: 3.0
</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>
1 change: 0 additions & 1 deletion spec/Vehicle/Vehicle.vspec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ VersionVSS.Patch:
VersionVSS.Label:
datatype: string
type: attribute
default: 'develop'
description: Label to further describe the version.

#
Expand Down
2 changes: 1 addition & 1 deletion vss-tools
Submodule vss-tools updated 34 files
+7 −9 README.md
+1 −1 contrib/vspec2protobuf.py
+81 −62 contrib/vspec2ttl/vspec2ttl.py
+156 −0 docs/vspec2x.md
+14 −0 tests/instances/resources/instance_complex_1.vspec
+14 −0 tests/instances/resources/instance_complex_2.vspec
+14 −0 tests/instances/resources/instance_complex_3.vspec
+14 −0 tests/instances/resources/instance_complex_4.vspec
+31 −0 tests/instances/resources/instance_exclude_node.vspec
+9 −0 tests/instances/resources/instance_simple_enum.vspec
+10 −0 tests/instances/resources/instance_simple_enum_list.vspec
+9 −0 tests/instances/resources/instance_simple_range.vspec
+10 −0 tests/instances/resources/instance_simple_range_list.vspec
+156 −0 tests/instances/test_instances.py
+3 −0 tests/model/test_contants.py
+7 −7 tests/model/test_vsstree.py
+3 −0 tests/vspec/.gitignore
+1 −0 tests/vspec/test_datatypes/expected.json
+77 −0 tests/vspec/test_datatypes/test.vspec
+10 −0 tests/vspec/test_faulty_type/test.vspec
+31 −0 tests/vspec/test_faulty_type/test_faulty_type.py
+50 −0 tests/vspec/test_generic.py
+1 −0 tests/vspec/test_types/expected.json
+23 −0 tests/vspec/test_types/test.vspec
+33 −14 vspec/__init__.py
+13 −0 vspec/config.yaml
+106 −67 vspec/model/vsstree.py
+19 −10 vspec2x.py
+4 −4 vssexporters/vss2binary.py
+1 −1 vssexporters/vss2csv.py
+2 −2 vssexporters/vss2ddsidl.py
+2 −2 vssexporters/vss2franca.py
+19 −16 vssexporters/vss2json.py
+17 −11 vssexporters/vss2yaml.py

0 comments on commit 9456798

Please sign in to comment.