Skip to content

Commit 5d854b1

Browse files
🚀 Release 0.7.0
1 parent 9b6fa8d commit 5d854b1

File tree

2 files changed

+46
-3
lines changed

2 files changed

+46
-3
lines changed

CHANGELOG.md

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

4-
## [Unreleased]
4+
## [0.7.0] - 2023-03-07
5+
### Added
6+
- Now the IK problem can be solved by `BipedaLocomotion::IK::QPInverseKinematics` (https://github.com/robotology/walking-controllers/pull/118)
7+
- Add the configuration files to run the walking controller on `ergoCubGazeboV1` (https://github.com/robotology/walking-controllers/pull/139)
8+
- Add the possibility to remove the ZMP-CoM offset when the controller is started (https://github.com/robotology/walking-controllers/pull/137)
9+
- Add the configuration files to run the walking controller (with and without reargeting) on `ergoCubSN000` (https://github.com/robotology/walking-controllers/pull/137 , https://github.com/robotology/walking-controllers/pull/140)
10+
11+
### Changed
12+
- Add the possibility to control the root height instead of the CoM height (https://github.com/robotology/walking-controllers/pull/118)
13+
- [iCubGenova09] Tune the gains (https://github.com/robotology/walking-controllers/pull/118)
14+
- Print the timers status every 10 seconds (https://github.com/robotology/walking-controllers/pull/123)
15+
- Modify the interface with the planner to allow the walking to run at 500Hz (https://github.com/robotology/walking-controllers/pull/127, https://github.com/robotology/walking-controllers/pull/136)
16+
- Update vendored `AddUninstallTarget.cmake` to `YCM v0.15.1` version (https://github.com/robotology/walking-controllers/pull/141)
17+
18+
### Fixed
19+
- Fix `WalkingModule::setPlannerInput()` when a new input is set from the joypad (https://github.com/robotology/walking-controllers/pull/129)
20+
21+
## [0.6.1] - 2022-09-14
22+
### Added
23+
- Enable the lateral walking (https://github.com/robotology/walking-controllers/pull/119)
24+
25+
### Changed
26+
- Remove the `Loggermodule` and the `LoggerClient` if favor of `YarpRobotLoggerDevice` (https://github.com/robotology/walking-controllers/pull/120)
27+
- Make all the dependencies required (https://github.com/robotology/walking-controllers/pull/120)
28+
29+
### Fixed
30+
- Fixes a compilation problem on Windows relative to the use of `std::min` (https://github.com/robotology/walking-controllers/pull/121)
31+
32+
## [0.5.2] - 2022-09-05
33+
### Added
34+
- Enable the minimum jerk trajectory for the first DS phase (https://github.com/robotology/walking-controllers/pull/117)
35+
36+
### Changed
37+
- [iCubGenova09] Update the configuration files (https://github.com/robotology/walking-controllers/pull/114)
38+
- Ask for `UnicyclePlanner v0.4.3` (https://github.com/robotology/walking-controllers/pull/117)
39+
40+
## [0.5.1] - 2022-05-01
41+
### Fixed
42+
- [iCubGenova09] Fix the name of the torso frame in the forwardKinematics.ini
43+
- Remove logger from iCubGazeboV3 configuration (https://github.com/robotology/walking-controllers/pull/105)
44+
- Fix yarp deprecation of methods like asDouble (https://github.com/robotology/walking-controllers/pull/112)
545

646
## [0.5.0] - 2022-02-01
747
### Added
@@ -133,7 +173,10 @@ All notable changes to this project are documented in this file.
133173
- Implement the first version of the `WalkingLoggerModule`
134174
- Implement the first version of the `WalkingJoypadModule`
135175

136-
[Unreleased]: https://github.com/robotology/walking-controllers/compare/v0.5.0...devel
176+
[0.7.0]: https://github.com/robotology/walking-controllers/compare/v0.6.1...v0.7.0
177+
[0.6.1]: https://github.com/robotology/walking-controllers/compare/v0.5.2..v0.6.1
178+
[0.5.2]: https://github.com/robotology/walking-controllers/compare/v0.5.1..v0.5.2
179+
[0.5.1]: https://github.com/robotology/walking-controllers/compare/v0.5.0..v0.5.1
137180
[0.5.0]: https://github.com/robotology/walking-controllers/compare/v0.4.1...v0.5.0
138181
[0.4.1]: https://github.com/robotology/walking-controllers/compare/v0.4.0...v0.4.1
139182
[0.4.0]: https://github.com/robotology/walking-controllers/compare/v0.3.3...v0.4.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.5)
66

77
## MAIN project
88
project(WalkingControllers
9-
VERSION 0.6.2)
9+
VERSION 0.7.0)
1010

1111
# Defines the CMAKE_INSTALL_LIBDIR, CMAKE_INSTALL_BINDIR and many other useful macros.
1212
# See https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html

0 commit comments

Comments
 (0)