Skip to content

Commit

Permalink
Bump version v0.3.6 (#637)
Browse files Browse the repository at this point in the history
  • Loading branch information
haixuanTao authored Aug 28, 2024
2 parents 881f041 + 416f55b commit c6abec2
Show file tree
Hide file tree
Showing 13 changed files with 136 additions and 111 deletions.
70 changes: 35 additions & 35 deletions Cargo.lock

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

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

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

[workspace.dependencies]
dora-node-api = { version = "0.3.5", path = "apis/rust/node", default-features = false }
dora-node-api-python = { version = "0.3.5", path = "apis/python/node", default-features = false }
dora-operator-api = { version = "0.3.5", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.3.5", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.3.5", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.3.5", path = "apis/python/operator" }
dora-operator-api-c = { version = "0.3.5", path = "apis/c/operator" }
dora-node-api-c = { version = "0.3.5", path = "apis/c/node" }
dora-core = { version = "0.3.5", path = "libraries/core" }
dora-arrow-convert = { version = "0.3.5", path = "libraries/arrow-convert" }
dora-tracing = { version = "0.3.5", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.3.5", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.3.5", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.3.5", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.3.5", path = "libraries/communication-layer/request-reply" }
dora-runtime = { version = "0.3.5", path = "binaries/runtime" }
dora-daemon = { version = "0.3.5", path = "binaries/daemon" }
dora-coordinator = { version = "0.3.5", path = "binaries/coordinator" }
dora-node-api = { version = "0.3.6", path = "apis/rust/node", default-features = false }
dora-node-api-python = { version = "0.3.6", path = "apis/python/node", default-features = false }
dora-operator-api = { version = "0.3.6", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.3.6", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.3.6", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.3.6", path = "apis/python/operator" }
dora-operator-api-c = { version = "0.3.6", path = "apis/c/operator" }
dora-node-api-c = { version = "0.3.6", path = "apis/c/node" }
dora-core = { version = "0.3.6", path = "libraries/core" }
dora-arrow-convert = { version = "0.3.6", path = "libraries/arrow-convert" }
dora-tracing = { version = "0.3.6", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.3.6", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.3.6", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.3.6", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.3.6", path = "libraries/communication-layer/request-reply" }
dora-runtime = { version = "0.3.6", path = "binaries/runtime" }
dora-daemon = { version = "0.3.6", path = "binaries/daemon" }
dora-coordinator = { version = "0.3.6", 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
29 changes: 29 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Changelog

## v0.3.6 (2024-08-17)

## What's Changed

- Update dependencies by @renovate in https://github.com/dora-rs/dora/pull/579
- Don't wait for non-started dynamic nodes on stop by @phil-opp in https://github.com/dora-rs/dora/pull/583
- add a comment on read_dora_input_id by @XxChang in https://github.com/dora-rs/dora/pull/580
- Update dependencies by @renovate in https://github.com/dora-rs/dora/pull/584
- Update dependencies by @renovate in https://github.com/dora-rs/dora/pull/585
- Add domain unix socket supports by @XxChang in https://github.com/dora-rs/dora/pull/594
- Check build for cross-compiled targets on CI by @phil-opp in https://github.com/dora-rs/dora/pull/597
- Test pip release creation as part of normal CI by @phil-opp in https://github.com/dora-rs/dora/pull/596
- Add-armv7-musleabihf-prebuilt-release by @haixuanTao in https://github.com/dora-rs/dora/pull/578
- Update dependencies by @renovate in https://github.com/dora-rs/dora/pull/602
- Delay dropping of `DoraNode` in Python until all event data is freed by @phil-opp in https://github.com/dora-rs/dora/pull/601
- Add install script by @haixuanTao in https://github.com/dora-rs/dora/pull/600
- Nodes hub to store and reuse commonly used node by @haixuanTao in https://github.com/dora-rs/dora/pull/569
- Ros2-bridge action attempt by @starlitxiling in https://github.com/dora-rs/dora/pull/567
- Update dependencies by @renovate in https://github.com/dora-rs/dora/pull/605
- Add a CI/CD for the node-hub by @haixuanTao in https://github.com/dora-rs/dora/pull/604
- Update dependencies by @renovate in https://github.com/dora-rs/dora/pull/608
- Remove dynamic node from pending nodes before starting a dataflow by @haixuanTao in https://github.com/dora-rs/dora/pull/606
- Fix alignment of atomics in shared memory communication channel by @phil-opp in https://github.com/dora-rs/dora/pull/612
- Update dependencies by @renovate in https://github.com/dora-rs/dora/pull/622
- Refactor: Move message definitions to `dora-message` crate by @phil-opp in https://github.com/dora-rs/dora/pull/613
- Update README.md by @heyong4725 in https://github.com/dora-rs/dora/pull/623
- Update Rust crate serde to v1.0.207 by @renovate in https://github.com/dora-rs/dora/pull/624
- fix clippy warnings by @Michael-J-Ward in https://github.com/dora-rs/dora/pull/626

## v0.3.5 (2024-07-03)

## What's Changed
Expand Down
Loading

0 comments on commit c6abec2

Please sign in to comment.