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

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 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 @@ -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
22 changes: 15 additions & 7 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,39 @@
## Gazebo 11

## Gazebo 11.10.1 (2022-01-19)

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

1. Fix duplicate vertex program name Ogre crash
* [Pull request #3161](https://github.com/osrf/gazebo/pull/3161)

## 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
6 changes: 5 additions & 1 deletion gazebo/common/MovingWindowFilter.hh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@
#include <vector>
#include <map>

// This fixes compiler warnings, see #3147 and #3160
#ifndef BOOST_BIND_GLOBAL_PLACEHOLDERS
#define BOOST_BIND_GLOBAL_PLACEHOLDERS
#endif
#include <boost/bind.hpp>
#include <boost/function.hpp>
#include <boost/bind/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/thread/mutex.hpp>

Expand Down
6 changes: 5 additions & 1 deletion gazebo/common/WeakBind.hh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@
#ifndef GAZEBO_COMMON_WEAKBIND_HH_
#define GAZEBO_COMMON_WEAKBIND_HH_

// This fixes compiler warnings, see #3147 and #3160
#ifndef BOOST_BIND_GLOBAL_PLACEHOLDERS
#define BOOST_BIND_GLOBAL_PLACEHOLDERS
#endif
#include <boost/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/bind/bind.hpp>

namespace gazebo
{
Expand Down
6 changes: 5 additions & 1 deletion gazebo/transport/Connection.hh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@
#include <tbb/task.h>
#include <google/protobuf/message.h>

// This fixes compiler warnings, see #3147 and #3160
#ifndef BOOST_BIND_GLOBAL_PLACEHOLDERS
#define BOOST_BIND_GLOBAL_PLACEHOLDERS
#endif
#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
7 changes: 6 additions & 1 deletion gazebo/transport/Node.hh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@
#define GAZEBO_TRANSPORT_NODE_HH_

#include <tbb/task.h>
#include <boost/bind/bind.hpp>

// This fixes compiler warnings, see #3147 and #3160
#ifndef BOOST_BIND_GLOBAL_PLACEHOLDERS
#define BOOST_BIND_GLOBAL_PLACEHOLDERS
#endif
#include <boost/bind.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <map>
#include <list>
Expand Down
6 changes: 5 additions & 1 deletion gazebo/transport/TopicManager.hh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
#ifndef GAZEBO_TRANSPORT_TOPICMANAGER_HH_
#define GAZEBO_TRANSPORT_TOPICMANAGER_HH_

#include <boost/bind/bind.hpp>
// This fixes compiler warnings, see #3147 and #3160
#ifndef BOOST_BIND_GLOBAL_PLACEHOLDERS
#define BOOST_BIND_GLOBAL_PLACEHOLDERS
#endif
#include <boost/bind.hpp>
#include <boost/function.hpp>
#include <map>
#include <list>
Expand Down
6 changes: 5 additions & 1 deletion gazebo/transport/TransportIface.hh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
#ifndef _GAZEBO_TRANSPORTIFACE_HH_
#define _GAZEBO_TRANSPORTIFACE_HH_

#include <boost/bind/bind.hpp>
// This fixes compiler warnings, see #3147 and #3160
#ifndef BOOST_BIND_GLOBAL_PLACEHOLDERS
#define BOOST_BIND_GLOBAL_PLACEHOLDERS
#endif
#include <boost/bind.hpp>
#include <string>
#include <list>
#include <map>
Expand Down