Skip to content

Commit

Permalink
Merge pull request #371 from dora-rs/release-v0.3.0
Browse files Browse the repository at this point in the history
Release v0.3.0
  • Loading branch information
haixuanTao authored Nov 3, 2023
2 parents e73c2d1 + e45975f commit 355c413
Show file tree
Hide file tree
Showing 10 changed files with 219 additions and 187 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
cargo publish -p communication-layer-pub-sub --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
cargo publish -p communication-layer-request-reply --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
cargo publish -p shared-memory-server --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
cargo publish -p dora-arrow-convert --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
# Publish rust API
cargo publish -p dora-operator-api-macros --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
Expand All @@ -65,8 +66,6 @@ jobs:
# Publish extension crates
cargo publish -p dora-record --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
windows-release:
name: "Windows Release"

Expand Down Expand Up @@ -106,7 +105,6 @@ jobs:
asset_name: dora-${{ github.ref_name }}-x86_64-${{ runner.os }}.zip
asset_content_type: application/zip


unix-release:
name: "Unix Release"

Expand Down Expand Up @@ -201,7 +199,7 @@ jobs:
python-version: ["3.7"]
fail-fast: false
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v3

Expand Down
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 @@ -31,31 +31,31 @@ members = [

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

0 comments on commit 355c413

Please sign in to comment.