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

Prepare for 15.2.0 release #1545

Merged
merged 1 commit into from
Feb 12, 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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0004 NEW)
endif(COMMAND CMAKE_POLICY)

project (sdformat15 VERSION 15.1.1)
project (sdformat15 VERSION 15.2.0)

# The protocol version has nothing to do with the package version.
# It represents the current version of SDFormat implemented by the software
Expand Down
29 changes: 29 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
## libsdformat 15.X

### libsdformat 15.2.0 (2025-02-12)

1. Add entry to Migration guide about the updated auto-inertia behavior
* [Pull request #1528](https://github.com/gazebosim/sdformat/pull/1528)

1. Add missed spec version 1.12 in the sdf_descriptions target
* [Pull request #1529](https://github.com/gazebosim/sdformat/pull/1529)

1. Resolve auto inertia based on input mass
* [Pull request #1513](https://github.com/gazebosim/sdformat/pull/1513)

1. ci.yml: run cppcheck, cpplint on noble
* [Pull request #1521](https://github.com/gazebosim/sdformat/pull/1521)

1. Add non-const overload for Root::Model() getter
* [Pull request #1524](https://github.com/gazebosim/sdformat/pull/1524)

1. Remove unncessary <iostream> includes
* [Pull request #1523](https://github.com/gazebosim/sdformat/pull/1523)

1. Don't reparse parent elements when cloning.
* [Pull request #1484](https://github.com/gazebosim/sdformat/pull/1484)

1. python bindings: get version from package.xml
* [Pull request #1504](https://github.com/gazebosim/sdformat/pull/1504)

1. Permit to test when building bindings separately from main library
* [Pull request #1509](https://github.com/gazebosim/sdformat/pull/1509)

### libsdformat 15.1.1 (2024-11-15)

1. **Baseline:** this includes all changes from 15.1.0 and earlier.
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>sdformat15</name>
<version>15.1.1</version>
<version>15.2.0</version>
<description>SDFormat is an XML file format that describes environments, objects, and robots
in a manner suitable for robotic applications</description>

Expand Down
Loading