Skip to content

Commit 93523a0

Browse files
bump: version 0.2.2 → 0.3.0
1 parent 1550d5e commit 93523a0

4 files changed

Lines changed: 23 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
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

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
55
LANGUAGES C CXX
6-
VERSION 0.2.2
6+
VERSION 0.3.0
77
DESCRIPTION "UTNs Robot Control Stack Library"
88
)
99

pyproject.toml

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

55
[project]
66
name = "rcsss"
7-
version = "0.2.2"
7+
version = "0.3.0"
88
description="Python Interface for libfranka to control the Franka Research 3 Robot"
99
dependencies = ["websockets>=11.0",
1010
"requests~=2.31",

python/rcsss/_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 common, hw, sim
1717

1818
__all__ = ["common", "hw", "sim"]
19-
__version__: str = "0.2.2"
19+
__version__: str = "0.3.0"

0 commit comments

Comments
 (0)