Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release V0.3.3 #465

Merged
merged 3 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 33 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,31 @@ members = [

[workspace.package]
# Make sure to also bump `apis/node/python/__init__.py` version.
version = "0.3.2"
version = "0.3.3"
description = "`dora` goal is to be a low latency, composable, and distributed data flow."
documentation = "https://dora.carsmos.ai"
license = "Apache-2.0"

[workspace.dependencies]
dora-node-api = { version = "0.3.2", path = "apis/rust/node", default-features = false }
dora-node-api-python = { version = "0.3.2", path = "apis/python/node", default-features = false }
dora-operator-api = { version = "0.3.2", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.3.2", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.3.2", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.3.2", path = "apis/python/operator" }
dora-operator-api-c = { version = "0.3.2", path = "apis/c/operator" }
dora-node-api-c = { version = "0.3.2", path = "apis/c/node" }
dora-core = { version = "0.3.2", path = "libraries/core" }
dora-arrow-convert = { version = "0.3.2", path = "libraries/arrow-convert" }
dora-tracing = { version = "0.3.2", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.3.2", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.3.2", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.3.2", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.3.2", path = "libraries/communication-layer/request-reply" }
dora-message = { version = "0.3.2", path = "libraries/message" }
dora-runtime = { version = "0.3.2", path = "binaries/runtime" }
dora-daemon = { version = "0.3.2", path = "binaries/daemon" }
dora-coordinator = { version = "0.3.2", path = "binaries/coordinator" }
dora-node-api = { version = "0.3.3", path = "apis/rust/node", default-features = false }
dora-node-api-python = { version = "0.3.3", path = "apis/python/node", default-features = false }
dora-operator-api = { version = "0.3.3", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.3.3", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.3.3", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.3.3", path = "apis/python/operator" }
dora-operator-api-c = { version = "0.3.3", path = "apis/c/operator" }
dora-node-api-c = { version = "0.3.3", path = "apis/c/node" }
dora-core = { version = "0.3.3", path = "libraries/core" }
dora-arrow-convert = { version = "0.3.3", path = "libraries/arrow-convert" }
dora-tracing = { version = "0.3.3", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.3.3", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.3.3", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.3.3", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.3.3", path = "libraries/communication-layer/request-reply" }
dora-message = { version = "0.3.3", path = "libraries/message" }
dora-runtime = { version = "0.3.3", path = "binaries/runtime" }
dora-daemon = { version = "0.3.3", path = "binaries/daemon" }
dora-coordinator = { version = "0.3.3", path = "binaries/coordinator" }
dora-ros2-bridge = { path = "libraries/extensions/ros2-bridge" }
dora-ros2-bridge-msg-gen = { path = "libraries/extensions/ros2-bridge/msg-gen" }
dora-ros2-bridge-python = { path = "libraries/extensions/ros2-bridge/python" }
Expand Down
39 changes: 39 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Changelog

## v0.3.3 (2024-04-08)

## What's Changed

- Metrics refactoring by @haixuanTao in https://github.com/dora-rs/dora/pull/423
- Add ROS2 bridge support for C++ nodes by @phil-opp in https://github.com/dora-rs/dora/pull/425
- Provide function to create empty `CombinedEvents` stream by @phil-opp in https://github.com/dora-rs/dora/pull/432
- Expose ROS2 constants in generated bindings (Rust and C++) by @phil-opp in https://github.com/dora-rs/dora/pull/428
- Add option to send `stdout` as node/operator output by @haixuanTao in https://github.com/dora-rs/dora/pull/388
- Fix warning about `#pragma once` in main file by @phil-opp in https://github.com/dora-rs/dora/pull/433
- Send runs artefacts into a dedicated `out` folder by @haixuanTao in https://github.com/dora-rs/dora/pull/429
- Create README.md for cxx-ros2-example by @bobd988 in https://github.com/dora-rs/dora/pull/431
- Use Async Parquet Writer for `dora-record` by @haixuanTao in https://github.com/dora-rs/dora/pull/434
- Update mio to fix security vulnerability by @phil-opp in https://github.com/dora-rs/dora/pull/440
- Add initial support for calling ROS2 services from Rust nodes by @phil-opp in https://github.com/dora-rs/dora/pull/439
- Enable ROS2 service calls from C++ nodes by @phil-opp in https://github.com/dora-rs/dora/pull/441
- Use `Debug` formatting for eyre errors when returning to C++ by @phil-opp in https://github.com/dora-rs/dora/pull/450
- Fix out-of-tree builds in cmake example by @phil-opp in https://github.com/dora-rs/dora/pull/453
- Fix broken link in README by @mshr-h in https://github.com/dora-rs/dora/pull/462
- fix cargo run --example cmake-dataflow compile bugs by @XxChang in https://github.com/dora-rs/dora/pull/460
- Llm example by @haixuanTao in https://github.com/dora-rs/dora/pull/451
- Fix meter conflict by @haixuanTao in https://github.com/dora-rs/dora/pull/461
- Update README.md by @bobd988 in https://github.com/dora-rs/dora/pull/458
- Refactor `README` by @haixuanTao in https://github.com/dora-rs/dora/pull/463
- Specify conda env for Python Operators by @haixuanTao in https://github.com/dora-rs/dora/pull/468

## Minor

- Bump h2 from 0.3.24 to 0.3.26 by @dependabot in https://github.com/dora-rs/dora/pull/456
- Update `bat` dependency to v0.24 by @phil-opp in https://github.com/dora-rs/dora/pull/424

## New Contributors

- @bobd988 made their first contribution in https://github.com/dora-rs/dora/pull/431

* @mshr-h made their first contribution in https://github.com/dora-rs/dora/pull/462

**Full Changelog**: https://github.com/dora-rs/dora/compare/v0.3.2...v0.3.3

## v0.3.2 (2024-01-26)

## Features
Expand Down
Loading
Loading