Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Prepare for 11.10.0 release #3158

Merged
merged 1 commit into from
Jan 13, 2022
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
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)
string (TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPER)

set (GAZEBO_MAJOR_VERSION 11)
set (GAZEBO_MINOR_VERSION 9)
set (GAZEBO_MINOR_VERSION 10)
# The patch version may have been bumped for prerelease purposes; be sure to
# check gazebo-release/ubuntu/debian/changelog@default to determine what the
# next patch version should be for a regular release.
set (GAZEBO_PATCH_VERSION 1)
set (GAZEBO_PATCH_VERSION 0)

set (GAZEBO_VERSION ${GAZEBO_MAJOR_VERSION}.${GAZEBO_MINOR_VERSION})
set (GAZEBO_VERSION_FULL ${GAZEBO_MAJOR_VERSION}.${GAZEBO_MINOR_VERSION}.${GAZEBO_PATCH_VERSION})
Expand Down
27 changes: 27 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
## Gazebo 11

## Gazebo 11.10.0 (2022-01-12)

1. Use boost/bind/bind.hpp to fix warnings on Arch Linux
* [Pull request #3156](https://github.com/ignitionrobotics/gazebo/pull/3156)
* Inspired by a contribution from Alex Dewar <alex.dewar@gmx.co.uk>

1. Fix focal builds: use python3 with check_test_ran.py
* [Pull request #3155](https://github.com/ignitionrobotics/gazebo/pull/3155)

1. Load model plugins even after sensor timeout
* [Pull request #3154](https://github.com/ignitionrobotics/gazebo/pull/3154)

1. CMake exports: remove -std=c++11 flag
* [Pull request #3050](https://github.com/ignitionrobotics/gazebo/pull/3050)
* A contribution from Guilhem Saurel <guilhem.saurel@laas.fr>

1. Create github action ci
* [Pull request #3049](https://github.com/ignitionrobotics/gazebo/pull/3049)
* A contribution from Tal Regev <tal.regev@gmail.com>

1. Fix Windows build when using vcpkg
* [Pull request #3132](https://github.com/ignitionrobotics/gazebo/pull/3132)
* A contribution from Akash Munagala <akash.munagala@gmail.com>

1. Point light shadows
* [Pull request #3051](https://github.com/ignitionrobotics/gazebo/pull/3051)

Comment on lines +5 to +29
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@scpeters The links to the pull requests should be to the https://github.com/osrf/gazebo/ repo and not https://github.com/ignitionrobotics/gazebo/, right ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes! thanks for catching that. I've included a fix in #3160

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the quick fix 👍

## Gazebo 11.9.1 (2021-12-02)

1. setup.sh: fix relocatability of `LD_LIBRARY_PATH`
Expand Down