Skip to content

Commit 90f23dc

Browse files
committed
bump: version 0.6.1 → 0.6.2
1 parent 32e1210 commit 90f23dc

File tree

25 files changed

+44
-34
lines changed

25 files changed

+44
-34
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## v0.6.2 (2026-02-17)
2+
3+
### Feat
4+
5+
- **realsense**: align depth and rgb option (#257)
6+
7+
### Fix
8+
9+
- **panda**: cfg arg in constructor available in py (#258)
10+
- **examples**: wrong named robot config var
11+
- **franka**: left over ik refactor (#256)
12+
113
## v0.6.1 (2026-01-28)
214

315
### 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.1
6+
VERSION 0.6.2
77
DESCRIPTION "Robot Control Stack Library"
88
)
99

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ RCS works best in python 3.11, all extensions have been tested to work in 3.11.
110110
# setup environment
111111
conda create -n rcs python=3.11
112112
conda activate rcs
113-
conda install conda-forge::eigen conda-forge::glfw
113+
conda install conda-forge::glfw
114114
# or sudo apt install $(cat debian_deps.txt)
115115
pip install 'pip>=25.1'
116116
pip install --group build_deps
@@ -129,8 +129,6 @@ RCS supports various hardware extensions (e.g., FR3, xArm7, RealSense). These ar
129129
To install an extension:
130130

131131
```shell
132-
# make sure to install system libraries before
133-
sudo apt install $(cat debian_deps.txt)
134132
pip install -ve extensions/rcs_fr3
135133
```
136134

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.24)
33
project(
44
rcs_fr3
55
LANGUAGES C CXX
6-
VERSION 0.6.1
6+
VERSION 0.6.2
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
@@ -13,9 +13,9 @@ build-backend = "scikit_build_core.build"
1313

1414
[project]
1515
name = "rcs_fr3"
16-
version = "0.6.1"
16+
version = "0.6.2"
1717
description = "RCS libfranka integration"
18-
dependencies = ["rcs>=0.6.1", "frankik"]
18+
dependencies = ["rcs>=0.6.2", "frankik"]
1919
readme = "README.md"
2020
maintainers = [{ name = "Tobias Jülg", email = "tobias.juelg@utn.de" }]
2121
authors = [{ name = "Tobias Jülg", email = "tobias.juelg@utn.de" }]

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.1"
19+
__version__: str = "0.6.2"

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.24)
33
project(
44
rcs_panda
55
LANGUAGES C CXX
6-
VERSION 0.6.1
6+
VERSION 0.6.2
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
@@ -12,9 +12,9 @@ build-backend = "scikit_build_core.build"
1212

1313
[project]
1414
name = "rcs_panda"
15-
version = "0.6.1"
15+
version = "0.6.2"
1616
description = "RCS libfranka integration"
17-
dependencies = ["rcs>=0.6.1"]
17+
dependencies = ["rcs>=0.6.2"]
1818
readme = "README.md"
1919
maintainers = [{ name = "Tobias Jülg", email = "tobias.juelg@utn.de" }]
2020
authors = [{ name = "Tobias Jülg", email = "tobias.juelg@utn.de" }]

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.1"
19+
__version__: str = "0.6.2"

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.1"
7+
version = "0.6.2"
88
description = "RCS realsense module"
99
dependencies = [
10-
"rcs>=0.6.1",
10+
"rcs>=0.6.2",
1111
"pyrealsense2~=2.55.1",
1212
"pupil_apriltags",
1313
"diskcache",

0 commit comments

Comments
 (0)