Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missed spec version 1.12 in the sdf_descriptions target #1529

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdf/1.11/root.sdf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<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.10" required="1">
<attribute name="version" type="string" default="1.11" required="1">
<description>
Version number of the SDFormat specification, consisting of major
and minor versions delimited by a `.` character.
Expand Down
2 changes: 1 addition & 1 deletion sdf/1.12/root.sdf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<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.10" required="1">
<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.
Expand Down
2 changes: 1 addition & 1 deletion sdf/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ execute_process(
if (GZ_PROGRAM)

# Update this list as new sdformat spec versions are added.
set(sdf_desc_versions 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11)
set(sdf_desc_versions 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12)

set(description_targets)
foreach(desc_ver ${sdf_desc_versions})
Expand Down
Loading