Skip to content

Commit 1549e3b

Browse files
committed
bump version to 0.3.6
- Increase gripper activation timeout from 5s to 10s
1 parent 24be10b commit 1549e3b

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and 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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "urkit"
7-
version = "0.3.5"
7+
version = "0.3.6"
88
description = "Universal Robots e-Series control toolkit built on ur_rtde"
99
readme = "README.md"
1010
license = {text = "MIT"}

src/urkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
from __future__ import annotations
2626

27-
__version__ = "0.3.5"
27+
__version__ = "0.3.6"
2828

2929
from urkit.config import load_config, resolve_config
3030
from urkit.exceptions import (

src/urkit/robot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)