Skip to content

Commit

Permalink
release: version 7.4.0 (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
domire8 authored Apr 17, 2024
1 parent 999bad7 commit 31d1a39
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 7 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Release Versions:

- [7.4.0](#740)
- [7.3.0](#730)
- [7.2.0](#720)
- [7.1.1](#711)
Expand All @@ -11,7 +12,15 @@ Release Versions:
- [6.3.0](#630)
- [6.2.0](#620)

## Upcoming changes (in development)
## 7.4.0

Version 7.4.0 brings Analog and Digital IO State types as a new feature to the `state_representation` module.

### Features

`AnalogIOState` and `DigitalIOState` classes have been added as new state types in `state_representation`.

### Full changelog

- feat: add IO states to state representation (py) (#173)
- feat: add IO states to state representation (proto) (#172)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.3.6
7.4.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 7.3.6 CONFIG REQUIRED)
find_package(control_libraries 7.4.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 = 7.3.6
PROJECT_NUMBER = 7.4.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 7.3.6)
project(clproto VERSION 7.4.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__ = "7.3.6"
__version__ = "7.4.0"
__libraries__ = ['state_representation', 'clproto', 'controllers', 'dynamical_systems', 'robot_model']
__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 7.3.6)
project(control_libraries VERSION 7.4.0)

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

0 comments on commit 31d1a39

Please sign in to comment.