Skip to content

Commit

Permalink
Merge pull request #499 from dora-rs/v0.3.4
Browse files Browse the repository at this point in the history
V0.3.4
  • Loading branch information
haixuanTao authored May 20, 2024
2 parents 8e14df4 + 7173e16 commit dae290f
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 62 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pip-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.8"
- name: Install dependencies
run: |
pip install patchelf --upgrade
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.8"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down
68 changes: 34 additions & 34 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 @@ -38,31 +38,31 @@ members = [

[workspace.package]
# Make sure to also bump `apis/node/python/__init__.py` version.
version = "0.3.3"
version = "0.3.4"
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.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-node-api = { version = "0.3.4", path = "apis/rust/node", default-features = false }
dora-node-api-python = { version = "0.3.4", path = "apis/python/node", default-features = false }
dora-operator-api = { version = "0.3.4", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.3.4", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.3.4", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.3.4", path = "apis/python/operator" }
dora-operator-api-c = { version = "0.3.4", path = "apis/c/operator" }
dora-node-api-c = { version = "0.3.4", path = "apis/c/node" }
dora-core = { version = "0.3.4", path = "libraries/core" }
dora-arrow-convert = { version = "0.3.4", path = "libraries/arrow-convert" }
dora-tracing = { version = "0.3.4", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.3.4", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.3.4", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.3.4", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.3.4", path = "libraries/communication-layer/request-reply" }
dora-message = { version = "0.3.4", path = "libraries/message" }
dora-runtime = { version = "0.3.4", path = "binaries/runtime" }
dora-daemon = { version = "0.3.4", path = "binaries/daemon" }
dora-coordinator = { version = "0.3.4", 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
Loading

0 comments on commit dae290f

Please sign in to comment.