Skip to content

Commit c52275e

Browse files
committed
bump: version 0.6.2 → 0.6.3
1 parent c07b86d commit c52275e

26 files changed

Lines changed: 45 additions & 34 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## v0.6.3 (2026-02-19)
2+
3+
### Feat
4+
5+
- add robotiq
6+
7+
### Fix
8+
9+
- **robotiq**: source file naming
10+
- **robotiq**: usage of the python lib
11+
112
## v0.6.2 (2026-02-17)
213

314
### 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.2
6+
VERSION 0.6.3
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.24)
33
project(
44
rcs_fr3
55
LANGUAGES C CXX
6-
VERSION 0.6.2
6+
VERSION 0.6.3
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.2"
16+
version = "0.6.3"
1717
description = "RCS libfranka integration"
18-
dependencies = ["rcs>=0.6.2", "frankik"]
18+
dependencies = ["rcs>=0.6.3", "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.2"
19+
__version__: str = "0.6.3"

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.2
6+
VERSION 0.6.3
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.2"
15+
version = "0.6.3"
1616
description = "RCS libfranka integration"
17-
dependencies = ["rcs>=0.6.2"]
17+
dependencies = ["rcs>=0.6.3"]
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.2"
19+
__version__: str = "0.6.3"

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.2"
7+
version = "0.6.3"
88
description = "RCS realsense module"
99
dependencies = [
10-
"rcs>=0.6.2",
10+
"rcs>=0.6.3",
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.2"
1+
__version__ = "0.6.3"

0 commit comments

Comments
 (0)