Skip to content

Commit 36a0d2d

Browse files
committed
bump: version 0.6.0 → 0.6.1
1 parent ec48106 commit 36a0d2d

24 files changed

Lines changed: 44 additions & 31 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v0.6.1 (2026-01-28)
2+
3+
### Feat
4+
5+
- **franka**: forward controller exceptions to python
6+
7+
### Fix
8+
9+
- **examples**: ur5e gripper definition
10+
- **gripper**: gripper state as list as defined by gym space
11+
- **tacto**: replace hydra with omegaconf
12+
- **tacto**: version
13+
114
## v0.6.0 (2026-01-23)
215

316
### Feat

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5)
33
project(
44
rcs
55
LANGUAGES C CXX
6-
VERSION 0.6.0
6+
VERSION 0.6.1
77
DESCRIPTION "Robot Control Stack Library"
88
)
99

extensions/rcs_fr3/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.19)
33
project(
44
rcs_fr3
55
LANGUAGES C CXX
6-
VERSION 0.6.0
6+
VERSION 0.6.1
77
DESCRIPTION "RCS Libfranka integration"
88
)
99

extensions/rcs_fr3/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "rcs_fr3"
7-
version = "0.6.0"
7+
version = "0.6.1"
88
description="RCS libfranka integration"
99
dependencies = [
10-
"rcs>=0.6.0",
10+
"rcs>=0.6.1",
1111
"frankik",
1212
]
1313
readme = "README.md"

extensions/rcs_fr3/src/rcs_fr3/_core/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ from __future__ import annotations
1616
from . import hw
1717

1818
__all__: list[str] = ["hw"]
19-
__version__: str = "0.6.0"
19+
__version__: str = "0.6.1"

extensions/rcs_panda/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5)
33
project(
44
rcs_panda
55
LANGUAGES C CXX
6-
VERSION 0.6.0
6+
VERSION 0.6.1
77
DESCRIPTION "RCS Libfranka integration"
88
)
99

extensions/rcs_panda/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "rcs_panda"
7-
version = "0.6.0"
7+
version = "0.6.1"
88
description="RCS libfranka integration"
99
dependencies = [
10-
"rcs>=0.6.0",
10+
"rcs>=0.6.1",
1111
]
1212
readme = "README.md"
1313
maintainers = [

extensions/rcs_panda/src/rcs_panda/_core/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ from __future__ import annotations
1616
from . import hw
1717

1818
__all__: list[str] = ["hw"]
19-
__version__: str = "0.6.0"
19+
__version__: str = "0.6.1"

extensions/rcs_realsense/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "rcs_realsense"
7-
version = "0.6.0"
7+
version = "0.6.1"
88
description="RCS realsense module"
99
dependencies = [
10-
"rcs>=0.6.0",
10+
"rcs>=0.6.1",
1111
"pyrealsense2~=2.55.1",
1212
"pupil_apriltags",
1313
"diskcache",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.0"
1+
__version__ = "0.6.1"

0 commit comments

Comments
 (0)