Skip to content

Commit 5325235

Browse files
committed
Release v0.2.0: bump all packages to 0.2.0, finalize CHANGELOG
1 parent 7ede53e commit 5325235

12 files changed

Lines changed: 19 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ All notable changes to this project are documented in this file. The format is
44
based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this
55
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.2.0] - 2026-06-07
8+
9+
A second real model, a compiled Nav2 plugin, a plugin hub, and the first
10+
practical runtime application (anomaly/OOD monitoring) — plus benchmarks,
11+
metrics, demos and a live dashboard.
812

913
### Added
1014
- **Runtime anomaly / OOD monitor**`AnomalyDetector` (self-calibrating
@@ -29,6 +33,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
2933
- `CONTRIBUTING.md`, issue forms, and a PR template.
3034
- `world-model bench-compare` — one evidence dashboard across adapters; spins a
3135
local reference server to measure the remote adapter's HTTP overhead.
36+
- A live demo landing + benchmark dashboard published to GitHub Pages, and the
37+
`camera_sim` + `monitor_demo` one-command anomaly-monitor demo.
3238

3339
## [0.1.0] - 2026-06-06
3440

@@ -68,4 +74,5 @@ layer for using existing World Models. ROS 2 Jazzy.
6874
- The Nav2 integration is a ROS service mock, not yet a compiled `nav2_core`
6975
C++ plugin.
7076

77+
[0.2.0]: https://github.com/rsasaki0109/worldmodels_ros2/releases/tag/v0.2.0
7178
[0.1.0]: https://github.com/rsasaki0109/worldmodels_ros2/releases/tag/v0.1.0

world_model_bringup/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>world_model_bringup</name>
5-
<version>0.1.0</version>
5+
<version>0.2.0</version>
66
<description>Launch files and demo configuration for world_model_ros2.</description>
77
<maintainer email="rsasaki0109@gmail.com">Ryohei Sasaki</maintainer>
88
<license>Apache-2.0</license>

world_model_costmap/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>world_model_costmap</name>
5-
<version>0.1.0</version>
5+
<version>0.2.0</version>
66
<description>
77
Nav2 costmap_2d layer plugin that stamps a World Model's predicted
88
FutureOccupancy into the costmap (future dynamic-obstacle layer).

world_model_datasets/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>world_model_datasets</name>
5-
<version>0.1.0</version>
5+
<version>0.2.0</version>
66
<description>
77
Convert rosbag2 recordings into robot-learning / world-model datasets
88
(LeRobot-compatible v2.1 layout). GPU-free.

world_model_datasets/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name=package_name,
7-
version="0.1.0",
7+
version="0.2.0",
88
packages=find_packages(exclude=["test"]),
99
data_files=[
1010
("share/ament_index/resource_index/packages", ["resource/" + package_name]),

world_model_msgs/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>world_model_msgs</name>
5-
<version>0.1.0</version>
5+
<version>0.2.0</version>
66
<description>
77
Message, service and action contract for using World Models from ROS 2.
88
Defines the typed boundary (Observation, ActionCondition, FutureState,

world_model_nav2/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>world_model_nav2</name>
5-
<version>0.1.0</version>
5+
<version>0.2.0</version>
66
<description>
77
Score Nav2 candidate trajectories with model-based risk (mock of a Nav2
88
controller critic). Exposes a ScoreTrajectories service and risk-coloured

world_model_nav2/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name=package_name,
10-
version="0.1.0",
10+
version="0.2.0",
1111
packages=find_packages(exclude=["test"]),
1212
data_files=[
1313
("share/ament_index/resource_index/packages", ["resource/" + package_name]),

world_model_py/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>world_model_py</name>
5-
<version>0.1.0</version>
5+
<version>0.2.0</version>
66
<description>
77
Python adapter SDK and ROS 2 runtime for World Models: load_model(),
88
dummy and remote adapters, a lifecycle runtime node, a sample

world_model_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name=package_name,
7-
version="0.1.0",
7+
version="0.2.0",
88
packages=find_packages(exclude=["test"]),
99
data_files=[
1010
("share/ament_index/resource_index/packages", ["resource/" + package_name]),

0 commit comments

Comments
 (0)