File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.3.6] — 2026-07-07
9+
10+ ### Changed
11+ - Gripper activation timeout increased from 5s to 10s
12+
813## [ 0.3.5] — 2026-07-07
914
1015### Changed
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " urkit"
7- version = " 0.3.5 "
7+ version = " 0.3.6 "
88description = " Universal Robots e-Series control toolkit built on ur_rtde"
99readme = " README.md"
1010license = {text = " MIT" }
Original file line number Diff line number Diff line change 2424
2525from __future__ import annotations
2626
27- __version__ = "0.3.5 "
27+ __version__ = "0.3.6 "
2828
2929from urkit .config import load_config , resolve_config
3030from urkit .exceptions import (
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ def __init__(
254254
255255 logger .info ("URRobot initialized at %s" , ip )
256256
257- def activate_gripper (self , * , timeout : float = 5 .0 ) -> bool :
257+ def activate_gripper (self , * , timeout : float = 10 .0 ) -> bool :
258258 """Activate the gripper with a timeout.
259259
260260 Tries to activate the configured gripper. If activation fails
You can’t perform that action at this time.
0 commit comments