Skip to content

Commit 822959d

Browse files
🚀 Release 0.11.1
1 parent 7b252ba commit 822959d

File tree

4 files changed

+26
-30
lines changed

4 files changed

+26
-30
lines changed

CHANGELOG.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
# Changelog
22
All notable changes to this project are documented in this file.
33

4-
## [unreleased]
5-
### Added
6-
7-
### Changed
8-
4+
## [0.11.1] - 2022-12-19
95
### Fix
106
- Fix the compilation of the `YarpRobotLoggerDevice` in `Windows` and `macOS` (https://github.com/ami-iit/bipedal-locomotion-framework/pull/580)
117

@@ -311,7 +307,7 @@ All notable changes to this project are documented in this file.
311307
- Added `mas-imu-test` application to check the output of MAS IMUs (https://github.com/ami-iit/bipedal-locomotion-framework/pull/62)
312308
- Implement motor currents reading in `YarpSensorBridge`. (https://github.com/ami-iit/bipedal-locomotion-framework/pull/187)
313309

314-
[unreleased]: https://github.com/ami-iit/bipedal-locomotion-framework/compare/v0.11.0...master
310+
[0.11.1]: https://github.com/ami-iit/bipedal-locomotion-framework/compare/v0.11.0...v0.11.1
315311
[0.11.0]: https://github.com/ami-iit/bipedal-locomotion-framework/compare/v0.10.0...v0.11.0
316312
[0.10.0]: https://github.com/ami-iit/bipedal-locomotion-framework/compare/v0.9.0...v0.10.0
317313
[0.9.0]: https://github.com/ami-iit/bipedal-locomotion-framework/compare/v0.8.0...v0.9.0

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.16.0)
66

77
## MAIN project
88
project(BipedalLocomotionFramework
9-
VERSION 0.11.100)
9+
VERSION 0.11.1)
1010

1111
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
1212

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ main_page = "docs/pages/main-page.dox"
33
additional_pages = ["docs/pages/python-additional-info.md"]
44
src_folder = "src"
55

6-
['v0.11.0']
6+
['v0.11.1']
77
main_page = "docs/pages/main-page.dox"
88
additional_pages = ["docs/pages/python-additional-info.md"]
99
src_folder = "src"

docs/pages/main-page.dox

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,31 @@ The minimum required dependencies are `Eigen3`, `iDynTree` and `spdlog`. If you
1515

1616
\section exported-components 📙 Exported components
1717

18-
The **bipedal-locomotion-framework** project consists of several components. The components are stored in the [`src`](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src) folder and their compilation depends on the installed dependencies.
18+
The **bipedal-locomotion-framework** project consists of several components. The components are stored in the [`src`](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src) folder and their compilation depends on the installed dependencies.
1919

2020
| Component | Description | Additional Dependencies |
2121
| :------------------------------------------: | :----------------------------------------------------------: | :----------------------------------------------------------: |
2222
| Framework | Interface library that gathers all the exported components, includable with the file `BipedalLocomotion/Framework.h` | - |
23-
| [AutoDiff](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/AutoDiff) | Bridge between CppAD and Eigen | [`CppAD`](https://coin-or.github.io/CppAD/doc/cppad.htm) |
24-
| [ContactModels](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/ContactModels) | Models to describe the contact between robot and enviroment | - |
25-
| [Contacts](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/Contacts) | Syntactic description of a contact | [`manif`](https://github.com/artivis/manif) [`nlohmann json`](https://github.com/nlohmann/json/) |
26-
| [CommonConversions](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/Conversions) | Common conversion utilities used in the framework | - |
27-
| [ManifConversions](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/Conversions) | `manif` library related conversion utilities used in the framework | [`manif`](https://github.com/artivis/manif) |
28-
| [Estimators](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/Estimators) | Library containing observers | - |
29-
| [FloatingBaseEstimator](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/Estimators) | Library containing floating base estimators | [`manif`](https://github.com/artivis/manif) |
30-
| [GenericContainer](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/GenericContainer) | Data structure similar to ``span`` but resizable. | - |
31-
| [IK](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/IK) | Inverse kinematics | [`manif`](https://github.com/artivis/manif) [`osqp-eigen`](https://github.com/robotology/osqp-eigen) |
32-
| [Math](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/Math) | Library containing mathematical algorithms | [`manif`](https://github.com/artivis/manif) |
33-
| [ParametersHandler](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/ParametersHandler) | Library for retrieving parameters from configuration files | [`YARP`](https://www.yarp.it/git-master/) (only if you want the `YARP` implementation) [`tomlplusplus`](https://github.com/marzer/tomlplusplus/) (only if you want the `toml` implementation) |
34-
| [Planners](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/Planners) | Library containing planner useful for locomotion | [`manif`](https://github.com/artivis/manif) [`CasADi`](https://web.casadi.org/) [`qhull`](http://www.qhull.org/) |
35-
| [RobotInterface](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/RobotInterface) | Generic interface classes to adapt to various IO data formats | [`YARP`](https://www.yarp.it/git-master/) (only if you want the `YARP` implementation) |
36-
| [System](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/System) | Description of discrete and continuous dynamical systems | - |
37-
| [TSID](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/TSID) | Task space inverse dynamics | [`manif`](https://github.com/artivis/manif) [`lie-group-controllers`](https://github.com/ami-iit/lie-group-controllers) |
38-
| [YarpUtilities](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/YarpUtilities) | Utilities library for retrieving data and from YARP structures | [`YARP`](https://www.yarp.it/git-master/) |
39-
| [PerceptionInterface](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/RobotInterface) | Generic interface classes to adapt to perception data formats like images and point clouds | [`OpenCV`](https://github.com/opencv/opencv) [`PCL`](https://github.com/PointCloudLibrary/pcl) |
40-
| [PerceptionCapture](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/Perception) | Library containing driver classes for perception devices | [`OpenCV`](https://github.com/opencv/opencv) [`PCL`](https://github.com/PointCloudLibrary/pcl) [`realsense2`](https://github.com/IntelRealSense/librealsense) |
41-
| [PerceptionFeatures](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/Perception) | Library containing perception algorithms useful for locomotion | [`OpenCV`](https://github.com/opencv/opencv) |
42-
| [SimplifiedModelControllers](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/src/SimplifiedModelControllers) | Library containing the controllers based on simplified models | [`manif`](https://github.com/artivis/manif) |
23+
| [AutoDiff](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/AutoDiff) | Bridge between CppAD and Eigen | [`CppAD`](https://coin-or.github.io/CppAD/doc/cppad.htm) |
24+
| [ContactModels](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/ContactModels) | Models to describe the contact between robot and enviroment | - |
25+
| [Contacts](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/Contacts) | Syntactic description of a contact | [`manif`](https://github.com/artivis/manif) [`nlohmann json`](https://github.com/nlohmann/json/) |
26+
| [CommonConversions](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/Conversions) | Common conversion utilities used in the framework | - |
27+
| [ManifConversions](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/Conversions) | `manif` library related conversion utilities used in the framework | [`manif`](https://github.com/artivis/manif) |
28+
| [Estimators](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/Estimators) | Library containing observers | - |
29+
| [FloatingBaseEstimator](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/Estimators) | Library containing floating base estimators | [`manif`](https://github.com/artivis/manif) |
30+
| [GenericContainer](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/GenericContainer) | Data structure similar to ``span`` but resizable. | - |
31+
| [IK](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/IK) | Inverse kinematics | [`manif`](https://github.com/artivis/manif) [`osqp-eigen`](https://github.com/robotology/osqp-eigen) |
32+
| [Math](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/Math) | Library containing mathematical algorithms | [`manif`](https://github.com/artivis/manif) |
33+
| [ParametersHandler](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/ParametersHandler) | Library for retrieving parameters from configuration files | [`YARP`](https://www.yarp.it/git-master/) (only if you want the `YARP` implementation) [`tomlplusplus`](https://github.com/marzer/tomlplusplus/) (only if you want the `toml` implementation) |
34+
| [Planners](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/Planners) | Library containing planner useful for locomotion | [`manif`](https://github.com/artivis/manif) [`CasADi`](https://web.casadi.org/) [`qhull`](http://www.qhull.org/) |
35+
| [RobotInterface](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/RobotInterface) | Generic interface classes to adapt to various IO data formats | [`YARP`](https://www.yarp.it/git-master/) (only if you want the `YARP` implementation) |
36+
| [System](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/System) | Description of discrete and continuous dynamical systems | - |
37+
| [TSID](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/TSID) | Task space inverse dynamics | [`manif`](https://github.com/artivis/manif) [`lie-group-controllers`](https://github.com/ami-iit/lie-group-controllers) |
38+
| [YarpUtilities](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/YarpUtilities) | Utilities library for retrieving data and from YARP structures | [`YARP`](https://www.yarp.it/git-master/) |
39+
| [PerceptionInterface](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/RobotInterface) | Generic interface classes to adapt to perception data formats like images and point clouds | [`OpenCV`](https://github.com/opencv/opencv) [`PCL`](https://github.com/PointCloudLibrary/pcl) |
40+
| [PerceptionCapture](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/Perception) | Library containing driver classes for perception devices | [`OpenCV`](https://github.com/opencv/opencv) [`PCL`](https://github.com/PointCloudLibrary/pcl) [`realsense2`](https://github.com/IntelRealSense/librealsense) |
41+
| [PerceptionFeatures](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/Perception) | Library containing perception algorithms useful for locomotion | [`OpenCV`](https://github.com/opencv/opencv) |
42+
| [SimplifiedModelControllers](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/src/SimplifiedModelControllers) | Library containing the controllers based on simplified models | [`manif`](https://github.com/artivis/manif) |
4343

4444
\warning ⚠️ Including `BipedalLocomotion/Framework.h` may result in higher compilation time because of the inclusion of headers which may not be used in your project. It is always suggested to follow the [IWYU](https://github.com/include-what-you-use/include-what-you-use/blob/cc0fad4be0db26e40713b6076263f204a311b573/docs/WhyIWYU.md) paradigm. This applies also for the CMake targets. It is suggested to link only the targets used in your project.
4545

@@ -70,7 +70,7 @@ cmake --build . --config Release --target install
7070

7171
\section some-utilities 🖥️ Some utilities
7272

73-
The **bipedal-locomotion-framework** ships also some utilities that can help you in the everyday tests on a real robot. You can find them in the [`utilities` folder](https://github.com/ami-iit/bipedal-locomotion-framework/tree/master/utilities). Each utility contains a well-documented `README` where you can find further details.
73+
The **bipedal-locomotion-framework** ships also some utilities that can help you in the everyday tests on a real robot. You can find them in the [`utilities` folder](https://github.com/ami-iit/bipedal-locomotion-framework/tree/v0.11.1/utilities). Each utility contains a well-documented `README` where you can find further details.
7474

7575
\section python 🐍 Python
7676

0 commit comments

Comments
 (0)