Skip to content

Commit 4448c39

Browse files
committed
bump: Bump version to 0.17.0
1 parent 838bb49 commit 4448c39

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# CHANGELOG
2+
3+
## 0.17.0 - 2025-10-14
4+
5+
* Feat: Added CartesianPose control to pylibfranka
6+
27
## 0.16.1 - 2025-10-10
38

49
* fix: fix cmake and package versioning

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11)
22

33
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
44

5-
set(libfranka_VERSION 0.16.1)
5+
set(libfranka_VERSION 0.17.0)
66

77
project(libfranka
88
VERSION ${libfranka_VERSION}

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
schematypens="http://www.w3.org/2001/XMLSchema"?>
55
<package format="3">
66
<name>libfranka</name>
7-
<version>0.16.1</version>
7+
<version>0.17.0</version>
88
<description>libfranka is a C++ library for Franka Robotics research robots</description>
99
<maintainer email="[email protected]">Franka Robotics GmbH</maintainer>
1010
<license>Apache 2.0</license>

pylibfranka/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This document provides comprehensive instructions for installing and using pylib
1010
- [Joint Position Example](#joint-position-example)
1111
- [Print Robot State Example](#print-robot-state-example)
1212
- [Joint Impedance Control Example](#joint-impedance-control-example)
13+
- [And more control examples](#and-more-control-examples)
1314
- [Gripper Control Example](#gripper-control-example)
1415
- [Troubleshooting](#troubleshooting)
1516

@@ -122,6 +123,15 @@ The joint impedance example:
122123
- Includes position holding with dwell time between movements
123124
- Compensates for Coriolis effects
124125

126+
### And more control examples
127+
128+
All control examples can be executed the way you already saw it:
129+
130+
```bash
131+
cd examples
132+
python3 other_example.py --ip <robot_ip>
133+
```
134+
125135
### Gripper Control Example
126136

127137
This example demonstrates how to control the Franka gripper, including homing, grasping, and reading gripper state.

0 commit comments

Comments
 (0)