Skip to content

Commit

Permalink
release: version 9.1.0 (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
domire8 authored Jan 9, 2025
1 parent d8806d5 commit 59e515c
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Release Versions

- [9.1.0](#910)
- [9.0.1](#901)
- [9.0.0](#900)
- [8.1.0](#810)
Expand All @@ -16,14 +17,20 @@ Release Versions
- [6.3.0](#630)
- [6.2.0](#620)

## Upcoming changes
## 9.1.0

Version 9.1.0 adds `integrate` and `differentiate` methods to relevant Cartesian and joint states to allow integration
and differentiation with double types as well as `chrono` types. Additionally, this version improves the performance of
the Inverse Kinematics algorithm in the `robot_model` library.

### Full changelog

- fix(robot-model): improve ik performance (#205)
- feat: add integrate and differentiate methods to Cartesian and joint types (#193)
- fix(robot-model): improve ik performance (#205)

## 9.0.1

Version 9.0.1 is a minor version update that exposes Cartesian and Joint state utility functions from the
Version 9.0.1 is a patch version update that exposes Cartesian and Joint state utility functions from the
corresponding `state_representation` classes.

### Features
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.1
9.1.0
2 changes: 1 addition & 1 deletion demos/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()

find_package(control_libraries 9.0.1 CONFIG REQUIRED)
find_package(control_libraries 9.1.0 CONFIG REQUIRED)

set(DEMOS_SCRIPTS
task_space_control_loop
Expand Down
2 changes: 1 addition & 1 deletion doxygen/doxygen.conf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Control Libraries"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 9.0.1
PROJECT_NUMBER = 9.1.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion protocol/clproto_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)

project(clproto VERSION 9.0.1)
project(clproto VERSION 9.1.0)

# Default to C99
if(NOT CMAKE_C_STANDARD)
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# names of the environment variables that define osqp and openrobots include directories
osqp_path_var = 'OSQP_INCLUDE_DIR'

__version__ = "9.0.1"
__version__ = "9.1.0"
__libraries__ = ['state_representation', 'clproto', 'controllers', 'dynamical_systems', 'robot_model', 'communication_interfaces']
__include_dirs__ = ['include']

Expand Down
2 changes: 1 addition & 1 deletion source/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)

project(control_libraries VERSION 9.0.1)
project(control_libraries VERSION 9.1.0)

# Build options
option(BUILD_TESTING "Build all tests." OFF)
Expand Down

0 comments on commit 59e515c

Please sign in to comment.