| @@ -99,6 +99,9 @@ jobs: | |||||
| publish_if_not_exists dora-daemon | publish_if_not_exists dora-daemon | ||||
| publish_if_not_exists dora-cli | publish_if_not_exists dora-cli | ||||
| # Publish ROS2 bridge | |||||
| publish_if_not_exists dora-ros2-bridge-msg-gen | |||||
| publish_if_not_exists dora-ros2-bridge | |||||
| unix: | unix: | ||||
| runs-on: ${{ matrix.platform.runner }} | runs-on: ${{ matrix.platform.runner }} | ||||
| strategy: | strategy: | ||||
| @@ -2887,7 +2887,7 @@ dependencies = [ | |||||
| [[package]] | [[package]] | ||||
| name = "dora-object-to-pose" | name = "dora-object-to-pose" | ||||
| version = "0.1.0" | |||||
| version = "0.3.10-rc3" | |||||
| dependencies = [ | dependencies = [ | ||||
| "dora-node-api", | "dora-node-api", | ||||
| "eyre", | "eyre", | ||||
| @@ -3002,7 +3002,7 @@ dependencies = [ | |||||
| [[package]] | [[package]] | ||||
| name = "dora-ros2-bridge" | name = "dora-ros2-bridge" | ||||
| version = "0.1.0" | |||||
| version = "0.3.10-rc3" | |||||
| dependencies = [ | dependencies = [ | ||||
| "array-init", | "array-init", | ||||
| "dora-daemon", | "dora-daemon", | ||||
| @@ -3025,7 +3025,7 @@ dependencies = [ | |||||
| [[package]] | [[package]] | ||||
| name = "dora-ros2-bridge-msg-gen" | name = "dora-ros2-bridge-msg-gen" | ||||
| version = "0.1.0" | |||||
| version = "0.3.10-rc3" | |||||
| dependencies = [ | dependencies = [ | ||||
| "anyhow", | "anyhow", | ||||
| "glob", | "glob", | ||||
| @@ -3041,7 +3041,7 @@ dependencies = [ | |||||
| [[package]] | [[package]] | ||||
| name = "dora-ros2-bridge-python" | name = "dora-ros2-bridge-python" | ||||
| version = "0.1.0" | |||||
| version = "0.3.10-rc3" | |||||
| dependencies = [ | dependencies = [ | ||||
| "arrow 54.2.1", | "arrow 54.2.1", | ||||
| "dora-ros2-bridge", | "dora-ros2-bridge", | ||||
| @@ -1,5 +1,31 @@ | |||||
| # Changelog | # Changelog | ||||
| ## v0.3.10 (2025-03-04) | |||||
| ## What's Changed | |||||
| - Enables array based bounding boxes by @haixuanTao in https://github.com/dora-rs/dora/pull/772 | |||||
| - Fix typo in node version by @haixuanTao in https://github.com/dora-rs/dora/pull/773 | |||||
| - CI: Use `paths-ignore` instead of negated `paths` by @phil-opp in https://github.com/dora-rs/dora/pull/781 | |||||
| - Adding rerun connect options by @haixuanTao in https://github.com/dora-rs/dora/pull/782 | |||||
| - Forbid `/` in node IDs by @phil-opp in https://github.com/dora-rs/dora/pull/785 | |||||
| - Adding reachy and dora reachy demo by @haixuanTao in https://github.com/dora-rs/dora/pull/784 | |||||
| - Fix typo in reachy node by @haixuanTao in https://github.com/dora-rs/dora/pull/789 | |||||
| - Update dependency transformers to >=4.48.0,<=4.48.0 [SECURITY] - abandoned by @renovate in https://github.com/dora-rs/dora/pull/778 | |||||
| - Fix bounding box for rerun viewer and clear the viewer if no bounding box is detected by @haixuanTao in https://github.com/dora-rs/dora/pull/787 | |||||
| - Adding float for env variable and metadata parameters by @haixuanTao in https://github.com/dora-rs/dora/pull/786 | |||||
| - Limit pip release ci to strict minimum by @haixuanTao in https://github.com/dora-rs/dora/pull/791 | |||||
| - Add uv flag within start cli command by @haixuanTao in https://github.com/dora-rs/dora/pull/788 | |||||
| - Adding a test for checking on the latency when used timeout and queue at the same time by @haixuanTao in https://github.com/dora-rs/dora/pull/783 | |||||
| - Use zenoh for inter-daemon communication by @phil-opp in https://github.com/dora-rs/dora/pull/779 | |||||
| - Pin chrono version by @haixuanTao in https://github.com/dora-rs/dora/pull/797 | |||||
| - Add kokoro tts by @haixuanTao in https://github.com/dora-rs/dora/pull/794 | |||||
| - Pick place demo by @haixuanTao in https://github.com/dora-rs/dora/pull/793 | |||||
| - Bump pyo3 to 0.23 by @haixuanTao in https://github.com/dora-rs/dora/pull/798 | |||||
| - Faster node hub CI/CD by removing `free disk space on ubuntu` by @haixuanTao in https://github.com/dora-rs/dora/pull/801 | |||||
| ## v0.3.9 (2025-02-06) | |||||
| ## What's Changed | ## What's Changed | ||||
| - Making cli install the default api avoiding confusion on install by @haixuanTao in https://github.com/dora-rs/dora/pull/739 | - Making cli install the default api avoiding confusion on install by @haixuanTao in https://github.com/dora-rs/dora/pull/739 | ||||
| @@ -1,6 +1,6 @@ | |||||
| [package] | [package] | ||||
| name = "dora-ros2-bridge" | name = "dora-ros2-bridge" | ||||
| version = "0.1.0" | |||||
| version.workspace = true | |||||
| edition.workspace = true | edition.workspace = true | ||||
| links = "dora-ros2-bridge" | links = "dora-ros2-bridge" | ||||
| @@ -1,6 +1,6 @@ | |||||
| [package] | [package] | ||||
| name = "dora-ros2-bridge-msg-gen" | name = "dora-ros2-bridge-msg-gen" | ||||
| version = "0.1.0" | |||||
| version.workspace = true | |||||
| edition.workspace = true | edition.workspace = true | ||||
| authors = ["Yuma Hiramatsu <yuma.hiramatsu@gmail.com>"] | authors = ["Yuma Hiramatsu <yuma.hiramatsu@gmail.com>"] | ||||
| license = "Apache-2.0" | license = "Apache-2.0" | ||||
| @@ -1,6 +1,6 @@ | |||||
| [package] | [package] | ||||
| name = "dora-ros2-bridge-python" | name = "dora-ros2-bridge-python" | ||||
| version = "0.1.0" | |||||
| version.workspace = true | |||||
| edition.workspace = true | edition.workspace = true | ||||
| @@ -0,0 +1,18 @@ | |||||
| [package] | |||||
| name = "dora-franka" | |||||
| version.workspace = true | |||||
| edition = "2021" | |||||
| documentation.workspace = true | |||||
| description.workspace = true | |||||
| license.workspace = true | |||||
| repository.workspace = true | |||||
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |||||
| [dependencies] | |||||
| tokio = { version = "1.36.0", features = ["fs", "rt", "rt-multi-thread"] } | |||||
| dora-node-api = { workspace = true, features = ["tracing"] } | |||||
| eyre = "0.6.8" | |||||
| chrono = "0.4.31" | |||||
| dora-tracing = { workspace = true } | |||||
| parquet = { version = "53", features = ["async"] } | |||||
| @@ -1,6 +1,6 @@ | |||||
| [project] | [project] | ||||
| name = "dora-kokoro-tts" | name = "dora-kokoro-tts" | ||||
| version = "0.0.0" | |||||
| version = "0.3.10rc3" | |||||
| authors = [{ name = "Your Name", email = "email@email.com" }] | authors = [{ name = "Your Name", email = "email@email.com" }] | ||||
| description = "dora-kokoro-tts" | description = "dora-kokoro-tts" | ||||
| license = { text = "MIT" } | license = { text = "MIT" } | ||||
| @@ -1,6 +1,6 @@ | |||||
| [package] | [package] | ||||
| name = "dora-object-to-pose" | name = "dora-object-to-pose" | ||||
| version = "0.1.0" | |||||
| version = "0.3.10-rc3" | |||||
| edition = "2021" | edition = "2021" | ||||
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||||