-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missed spec version 1.12 in the sdf_descriptions target (#1529)
This also updates the default versions in root.sdf files Signed-off-by: Addisu Z. Taddese <addisu@openrobotics.org> (cherry picked from commit fd0292a) # Conflicts: # sdf/1.12/root.sdf
- Loading branch information
1 parent
a7ac86e
commit fd02133
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<element name="sdf" required="1"> | ||
<description>SDFormat base element that can include one model, actor, light, or worlds. A user of multiple worlds could run parallel instances of simulation, or offer selection of a world at runtime.</description> | ||
|
||
<attribute name="version" type="string" default="1.12" required="1"> | ||
<description> | ||
Version number of the SDFormat specification, consisting of major | ||
and minor versions delimited by a `.` character. | ||
A major version bump is required if older versions cannot be | ||
automatically converted to this version. | ||
A minor version bump is required when there are breaking changes that | ||
can be handled by the automatic conversion functionality encoded in the | ||
`*.convert` files. | ||
</description> | ||
</attribute> | ||
|
||
<include filename="world.sdf" required="*"/> | ||
<include filename="model.sdf" required="0"/> | ||
<include filename="actor.sdf" required="0"/> | ||
<include filename="light.sdf" required="0"/> | ||
|
||
</element> <!-- End SDF --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters