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 7.5.1 Release #623

Merged
merged 1 commit into from
Aug 23, 2024
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 @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
#============================================================================
# Initialize the project
#============================================================================
project(gz-math7 VERSION 7.5.0)
project(gz-math7 VERSION 7.5.1)

#============================================================================
# Find gz-cmake
Expand Down
14 changes: 14 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
## Gazebo Math 7.x

### Gazebo Math 7.5.1 (2024-08-23)

1. Fix tolerance for axis-angle conversion of quaternions
* [Pull request #620](https://github.com/gazebosim/gz-math/pull/620)

1. Added box examples in C++ and Python
* [Pull request #584](https://github.com/gazebosim/gz-math/pull/584)

1. Check for 0 stddev when generating a random number using normal distribution
* [Pull request #615](https://github.com/gazebosim/gz-math/pull/615)

1. Clean up nested namespaces
* [Pull request #603](https://github.com/gazebosim/gz-math/pull/603)

### Gazebo Math 7.5.0 (2024-06-18)

1. Backport: Adding cone primitives.
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>gz-math7</name>
<version>7.5.0</version>
<version>7.5.1</version>
<description>Gazebo Math : Math classes and functions for robot applications</description>
<maintainer email="[email protected]">Steve Peters</maintainer>
<maintainer email="[email protected]">Aditya Pande</maintainer>
Expand Down
Loading