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

Bump Dora Version Release v0.2.1 #232

Merged
merged 3 commits into from Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
56 changes: 28 additions & 28 deletions Cargo.lock

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

34 changes: 17 additions & 17 deletions Cargo.toml
Expand Up @@ -23,28 +23,28 @@ members = [
]

[workspace.package]
version = "0.2.0"
version = "0.2.1"
description = "`dora` goal is to be a low latency, composable, and distributed data flow."
documentation = "https://dora.carsmos.ai/dora/"
license = "Apache-2.0"

[workspace.dependencies]
dora-node-api = { version = "0.2.0", path = "apis/rust/node", default-features = false }
dora-operator-api = { version = "0.2.0", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.2.0", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.2.0", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.2.0", path = "apis/python/operator" }
dora-operator-api-c = { version = "0.2.0", path = "apis/c/operator" }
dora-node-api-c = { version = "0.2.0", path = "apis/c/node" }
dora-core = { version = "0.2.0", path = "libraries/core" }
dora-tracing = { version = "0.2.0", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.2.0", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.2.0", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.2.0", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.2.0", path = "libraries/communication-layer/request-reply" }
dora-message = { version = "0.2.0", path = "libraries/message" }
dora-runtime = { version = "0.2.0", path = "binaries/runtime" }
dora-daemon = { version = "0.2.0", path = "binaries/daemon" }
dora-node-api = { version = "0.2.1", path = "apis/rust/node", default-features = false }
dora-operator-api = { version = "0.2.1", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.2.1", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.2.1", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.2.1", path = "apis/python/operator" }
dora-operator-api-c = { version = "0.2.1", path = "apis/c/operator" }
dora-node-api-c = { version = "0.2.1", path = "apis/c/node" }
dora-core = { version = "0.2.1", path = "libraries/core" }
dora-tracing = { version = "0.2.1", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.2.1", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.2.1", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.2.1", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.2.1", path = "libraries/communication-layer/request-reply" }
dora-message = { version = "0.2.1", path = "libraries/message" }
dora-runtime = { version = "0.2.1", path = "binaries/runtime" }
dora-daemon = { version = "0.2.1", path = "binaries/daemon" }

[package]
name = "dora-examples"
Expand Down
28 changes: 27 additions & 1 deletion Changelog.md
@@ -1,6 +1,32 @@
# Changelog

## v0.2.0 (2023-01-18)
## v0.2.1 (2023-03-22)

### Features

* [Make dora-rs publishable on crates.io](https://github.com/dora-rs/dora/pull/211)
* [Add an internal cli argument to create template with path dependencies](https://github.com/dora-rs/dora/pull/212)
haixuanTao marked this conversation as resolved.
Show resolved Hide resolved

### Fixes

* [Avoid blocking the daemon main loop by using unbounded queue](https://github.com/dora-rs/dora/pull/230)
* [Inject YAML declared env variable into the runtime](https://github.com/dora-rs/dora/pull/227)
* [Use rustls instead of system SSL implementation](https://github.com/dora-rs/dora/pull/216)

### Other

* [Refactor python error](https://github.com/dora-rs/dora/pull/229)
* [The first letter of rust should be lowercase in the command](https://github.com/dora-rs/dora/pull/226)
* [Add documentation to the cli within the helper mode](https://github.com/dora-rs/dora/pull/225)
* [Update to safer-ffi v0.1.0-rc1](https://github.com/dora-rs/dora/pull/218)
* [remove unused variable: data_bytes](https://github.com/dora-rs/dora/pull/215)
* [Clean up: Remove workspace path](https://github.com/dora-rs/dora/pull/210)
* [Decouple opentelemetry from tracing](https://github.com/dora-rs/dora/pull/222)
* [Remove zenoh dependency from dora node API to speed up build](https://github.com/dora-rs/dora/pull/220)
* [Update to Rust v1.68](https://github.com/dora-rs/dora/pull/221)
* [Deny unknown fields to avoid typos](https://github.com/dora-rs/dora/pull/223)

## v0.2.0 (2023-03-14)

### Breaking

Expand Down