Skip to content

Commit 8e90ff3

Browse files
committed
chore: New release 1.47.3
1 parent 2c17f3c commit 8e90ff3

File tree

6 files changed

+16
-4
lines changed

6 files changed

+16
-4
lines changed

exts/wandelbots.omni/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ reloadable = true
33
order = 0
44

55
[package]
6-
version = "1.47.1"
6+
version = "1.47.3"
77
category = "Simulation"
88
title = "Wandelbots NOVA"
99
description = "Simulate your robotics cell running on Wandelbots NOVA."

exts/wandelbots.omni/docs/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog - Wandelbots NOVA x Nvidia Isaac Sim
22

3+
## 1.47.3 (2025-04-09)
4+
5+
### Bug Fixes
6+
7+
* **RPS-1527:** Fixed invalid async in ghost object creation
8+
9+
## 1.47.2 (2025-03-27)
10+
11+
### Bug Fixes
12+
13+
* missing __init__.py file for loading extension
14+
315
## 1.47.1 (2025-03-20)
416

517
### Bug Fixes

exts/wandelbots.omni/wandelbots/__init__.py

Whitespace-only changes.

exts/wandelbots.omni/wandelbots/omni/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
omniservice_app = FastAPI(
2323
title="Wandelbots Omniservice",
2424
description="A microservice-based framework for managing Omniverse functionalities",
25-
version="1.47.1",
25+
version="1.47.3",
2626
redoc_url=None,
2727
)
2828
omniservice_app.add_middleware(

exts/wandelbots.omni/wandelbots/omni/openapi.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

exts/wandelbots.omni/wandelbots/omni/router/v1/ghost_teaching.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ async def add_ghost_object(
132132

133133
# set ghost object to active TCP pose
134134
if ref_pose:
135-
await PrimUtils.set_pose(target_path, ref_pose)
135+
PrimUtils.set_pose(target_path, ref_pose)
136136

137137

138138
@ghost_teaching_router.delete(

0 commit comments

Comments
 (0)