Skip to content

Commit

Permalink
Release v0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-opp committed Sep 14, 2023
1 parent e5a9cbe commit f283a46
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 57 deletions.
64 changes: 32 additions & 32 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 @@ -30,30 +30,30 @@ members = [

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

Expand Down
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.2.6 (2023-09-14)

* Update dependencies to fix some security advisories by @phil-opp in https://github.com/dora-rs/dora/pull/354
- Fixes `cargo install dora-daemon`


## v0.2.5 (2023-09-06)

### Features
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,16 @@ For more installation guideline, check out our installation guide here: https://

1. Install the example python dependencies:
```bash
pip install -r https://raw.githubusercontent.com/dora-rs/dora/v0.2.5/examples/python-operator-dataflow/requirements.txt
pip install -r https://raw.githubusercontent.com/dora-rs/dora/v0.2.6/examples/python-operator-dataflow/requirements.txt
```

2. Get some example operators:
```bash
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.5/examples/python-operator-dataflow/webcam.py
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.5/examples/python-operator-dataflow/plot.py
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.5/examples/python-operator-dataflow/utils.py
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.5/examples/python-operator-dataflow/object_detection.py
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.5/examples/python-operator-dataflow/dataflow.yml
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.6/examples/python-operator-dataflow/webcam.py
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.6/examples/python-operator-dataflow/plot.py
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.6/examples/python-operator-dataflow/utils.py
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.6/examples/python-operator-dataflow/object_detection.py
wget https://raw.githubusercontent.com/dora-rs/dora/v0.2.6/examples/python-operator-dataflow/dataflow.yml
```

3. Start the dataflow
Expand Down

0 comments on commit f283a46

Please sign in to comment.