Skip to content

Commit

Permalink
Merge pull request #232 from dora-rs/release-v0.2.1
Browse files Browse the repository at this point in the history
Bump Dora Version Release v0.2.1
  • Loading branch information
haixuanTao committed Mar 22, 2023
2 parents d568613 + 4628473 commit 68da9bd
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 46 deletions.
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)

### 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)
* [Add an internal cli argument to create template with path dependencies](https://github.com/dora-rs/dora/pull/212)

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

### Breaking

Expand Down

0 comments on commit 68da9bd

Please sign in to comment.