Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/production' into fix_smoother_in…
Browse files Browse the repository at this point in the history
…itialize_quadratic_20241224
  • Loading branch information
Taiju Yamada committed Jan 5, 2025
2 parents a375497 + b08bee8 commit 9a8c488
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set( CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS TRUE )
# Define here the needed parameters
set (OPENRAVE_VERSION_MAJOR 0)
set (OPENRAVE_VERSION_MINOR 161)
set (OPENRAVE_VERSION_PATCH 1)
set (OPENRAVE_VERSION_PATCH 2)
set (OPENRAVE_VERSION ${OPENRAVE_VERSION_MAJOR}.${OPENRAVE_VERSION_MINOR}.${OPENRAVE_VERSION_PATCH})
set (OPENRAVE_SOVERSION ${OPENRAVE_VERSION_MAJOR}.${OPENRAVE_VERSION_MINOR})
message(STATUS "Compiling OpenRAVE Version ${OPENRAVE_VERSION}, soversion=${OPENRAVE_SOVERSION}")
Expand Down
7 changes: 6 additions & 1 deletion docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@
ChangeLog
#########

Version 0.161.1
Version 0.161.2
===============

- Apply ramp acceleration modification the same way as is done in `SegmentFeasible2` when initializing an input trajectory that is quadratic.

Version 0.161.1
===============

- Expose toAttributeList from openravepy library.

Version 0.161.0
===============

Expand Down
6 changes: 3 additions & 3 deletions python/bindings/include/openravepy/openravepy_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -444,10 +444,10 @@ inline py::object toPyVector4(Vector v)
}

/// \brief converts dictionary of keyvalue pairs
AttributesList toAttributesList(py::dict odict);
OPENRAVEPY_API AttributesList toAttributesList(py::dict odict);
/// \brief converts list of tuples [(key,value),(key,value)], it is possible for keys to repeat
AttributesList toAttributesList(py::list olist);
AttributesList toAttributesList(py::object oattributes);
OPENRAVEPY_API AttributesList toAttributesList(py::list olist);
OPENRAVEPY_API AttributesList toAttributesList(py::object oattributes);

template <typename T>
inline py::object ReturnTransform(const T& t)
Expand Down

0 comments on commit 9a8c488

Please sign in to comment.