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

Revert boost/bind.hpp changes in header files and bump to 11.10.1 #3160

Merged
Merged
Show file tree
Hide file tree
Changes from 3 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 @@ -22,7 +22,7 @@ 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 0)
set (GAZEBO_PATCH_VERSION 1)

set (GAZEBO_VERSION ${GAZEBO_MAJOR_VERSION}.${GAZEBO_MINOR_VERSION})
set (GAZEBO_VERSION_FULL ${GAZEBO_MAJOR_VERSION}.${GAZEBO_MINOR_VERSION}.${GAZEBO_PATCH_VERSION})
Expand Down
19 changes: 12 additions & 7 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,36 @@
## Gazebo 11

## Gazebo 11.10.1 (2022-01-13)

1. Revert boost/bind.hpp changes in header files
* [Pull request #3160](https://github.com/osrf/gazebo/pull/3160)

## 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)
* [Pull request #3156](https://github.com/osrf/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)
* [Pull request #3155](https://github.com/osrf/gazebo/pull/3155)

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

1. CMake exports: remove -std=c++11 flag
* [Pull request #3050](https://github.com/ignitionrobotics/gazebo/pull/3050)
* [Pull request #3050](https://github.com/osrf/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)
* [Pull request #3049](https://github.com/osrf/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)
* [Pull request #3132](https://github.com/osrf/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)
* [Pull request #3051](https://github.com/osrf/gazebo/pull/3051)

## Gazebo 11.9.1 (2021-12-02)

Expand Down
2 changes: 1 addition & 1 deletion gazebo/common/MovingWindowFilter.hh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <map>

#include <boost/function.hpp>
#include <boost/bind/bind.hpp>
#include <boost/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/thread/mutex.hpp>

Expand Down
2 changes: 1 addition & 1 deletion gazebo/common/WeakBind.hh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#define GAZEBO_COMMON_WEAKBIND_HH_

#include <boost/shared_ptr.hpp>
#include <boost/bind/bind.hpp>
#include <boost/bind.hpp>

namespace gazebo
{
Expand Down
2 changes: 1 addition & 1 deletion gazebo/transport/Connection.hh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <google/protobuf/message.h>

#include <boost/asio.hpp>
#include <boost/bind/bind.hpp>
#include <boost/bind.hpp>
#include <boost/function.hpp>
#include <boost/thread.hpp>
#include <boost/tuple/tuple.hpp>
Expand Down
2 changes: 1 addition & 1 deletion gazebo/transport/Node.hh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#define GAZEBO_TRANSPORT_NODE_HH_

#include <tbb/task.h>
#include <boost/bind/bind.hpp>
#include <boost/bind.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <map>
#include <list>
Expand Down
2 changes: 1 addition & 1 deletion gazebo/transport/TopicManager.hh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#ifndef GAZEBO_TRANSPORT_TOPICMANAGER_HH_
#define GAZEBO_TRANSPORT_TOPICMANAGER_HH_

#include <boost/bind/bind.hpp>
#include <boost/bind.hpp>
#include <boost/function.hpp>
#include <map>
#include <list>
Expand Down
2 changes: 1 addition & 1 deletion gazebo/transport/TransportIface.hh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#ifndef _GAZEBO_TRANSPORTIFACE_HH_
#define _GAZEBO_TRANSPORTIFACE_HH_

#include <boost/bind/bind.hpp>
#include <boost/bind.hpp>
#include <string>
#include <list>
#include <map>
Expand Down