File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## v0.3.0 (2024-10-02)
2+
3+ ### Feat
4+
5+ - ** sim** : Interactive sim viewer in separate process
6+ - ** gui** : refactor with base class
7+ - ** gui** : GuiServer & GuiClient class skeletons
8+ - ** gui** : add mujoco ui library
9+
10+ ### Fix
11+
12+ - ** camera env** : missing depth data when depth enabled
13+ - remove doubly registered collision callback
14+
15+ ### Refactor
16+
17+ - ** vive** : using factory functions to create envs
18+ - ** sim** : simulation to use refactored ik
19+ - ** ik** : moved rl ik into common, removed rl deps in hw
20+
121## v0.2.2 (2024-10-01)
222
323### Feat
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.19)
33project (
44 rcs
55 LANGUAGES C CXX
6- VERSION 0.2.2
6+ VERSION 0.3.0
77 DESCRIPTION "UTNs Robot Control Stack Library"
88)
99
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44
55[project ]
66name = " rcsss"
7- version = " 0.2.2 "
7+ version = " 0.3.0 "
88description =" Python Interface for libfranka to control the Franka Research 3 Robot"
99dependencies = [" websockets>=11.0" ,
1010 " requests~=2.31" ,
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ from __future__ import annotations
1616from . import common , hw , sim
1717
1818__all__ = ["common" , "hw" , "sim" ]
19- __version__ : str = "0.2.2 "
19+ __version__ : str = "0.3.0 "
You can’t perform that action at this time.
0 commit comments