Browse Source

Merge pull request #157 from dora-rs/release

Simplify release process
tags/v0.1.2
Philipp Oppermann GitHub 3 years ago
parent
commit
d3914cca60
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
28 changed files with 45 additions and 38 deletions
  1. +9
    -0
      Cargo.toml
  2. +2
    -4
      apis/c++/node/Cargo.toml
  3. +2
    -2
      apis/c++/operator/Cargo.toml
  4. +1
    -1
      apis/c/node/Cargo.toml
  5. +1
    -1
      apis/c/operator/Cargo.toml
  6. +1
    -1
      apis/python/operator/Cargo.toml
  7. +1
    -1
      apis/rust/node/Cargo.toml
  8. +1
    -1
      apis/rust/operator/Cargo.toml
  9. +1
    -1
      apis/rust/operator/macros/Cargo.toml
  10. +1
    -1
      apis/rust/operator/types/Cargo.toml
  11. +1
    -1
      binaries/cli/Cargo.toml
  12. +2
    -2
      binaries/coordinator/Cargo.toml
  13. +2
    -2
      binaries/runtime/Cargo.toml
  14. +2
    -2
      examples/iceoryx/node/Cargo.toml
  15. +1
    -1
      examples/iceoryx/operator/Cargo.toml
  16. +2
    -2
      examples/iceoryx/sink/Cargo.toml
  17. +2
    -2
      examples/rust-dataflow-url/sink/Cargo.toml
  18. +2
    -2
      examples/rust-dataflow/node/Cargo.toml
  19. +1
    -1
      examples/rust-dataflow/operator/Cargo.toml
  20. +2
    -2
      examples/rust-dataflow/sink/Cargo.toml
  21. +1
    -1
      libraries/communication-layer/pub-sub/Cargo.toml
  22. +1
    -1
      libraries/communication-layer/request-reply/Cargo.toml
  23. +1
    -1
      libraries/core/Cargo.toml
  24. +1
    -1
      libraries/extensions/download/Cargo.toml
  25. +1
    -1
      libraries/extensions/telemetry/metrics/Cargo.toml
  26. +1
    -1
      libraries/extensions/telemetry/tracing/Cargo.toml
  27. +1
    -1
      libraries/extensions/zenoh-logger/Cargo.toml
  28. +1
    -1
      libraries/message/Cargo.toml

+ 9
- 0
Cargo.toml View File

@@ -18,12 +18,21 @@ members = [
"libraries/extensions/zenoh-logger",
]

[workspace.package]
version = "0.1.1"

[workspace.dependencies]
dora-node-api = { version = "0.1.1", path = "apis/rust/node", default-features = false }
dora-operator-api = { version = "0.1.1", path = "apis/rust/operator", default-features = false }
dora-core = { version = "0.1.1", path = "libraries/core" }

[package]
name = "dora-examples"
version = "0.0.0"
edition = "2021"
license = "Apache-2.0"


[dev-dependencies]
eyre = "0.6.8"
tokio = "1.20.1"


+ 2
- 4
apis/c++/node/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-node-api-cxx"
version = "0.1.1"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -10,9 +10,7 @@ crate-type = ["staticlib"]

[dependencies]
cxx = "1.0.73"
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node", default-features = false, features = [
"zenoh",
] }
dora-node-api = { workspace = true, features = ["zenoh"] }
eyre = "0.6.8"

[build-dependencies]


+ 2
- 2
apis/c++/operator/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-cxx"
version = "0.1.1"
version.workspace = true
edition = "2021"

[lib]
@@ -8,7 +8,7 @@ crate-type = ["staticlib"]

[dependencies]
cxx = "1.0.73"
dora-operator-api = { version = "0.1.1", path = "../../../apis/rust/operator" }
dora-operator-api = { workspace = true }
eyre = "0.6.8"
futures = "0.3.21"
rand = "0.8.5"


+ 1
- 1
apis/c/node/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-node-api-c"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 1
- 1
apis/c/operator/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-c"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "C API implemetation for Dora Operator"


+ 1
- 1
apis/python/operator/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-python"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 1
- 1
apis/rust/node/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-node-api"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 1
- 1
apis/rust/operator/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "Rust API implemetation for Dora Operator"


+ 1
- 1
apis/rust/operator/macros/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-macros"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "Rust API Macros for Dora Operator"


+ 1
- 1
apis/rust/operator/types/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-types"
version = "0.1.1"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
binaries/cli/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-cli"
version = "0.1.1"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 2
- 2
binaries/coordinator/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-coordinator"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"

@@ -20,7 +20,7 @@ clap = { version = "3.1.8", features = ["derive"] }
uuid = { version = "1.2.1" }
time = "0.3.9"
rand = "0.8.5"
dora-core = { version = "0.1.1", path = "../../libraries/core" }
dora-core = { workspace = true }
dora-message = { path = "../../libraries/message" }
tracing = "0.1.36"
tracing-subscriber = "0.3.15"


+ 2
- 2
binaries/runtime/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-runtime"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"

@@ -14,7 +14,7 @@ dora-node-api = { path = "../../apis/rust/node", default-features = false, featu
] }
dora-operator-api-python = { path = "../../apis/python/operator" }
dora-operator-api-types = { path = "../../apis/rust/operator/types" }
dora-core = { version = "0.1.1", path = "../../libraries/core" }
dora-core = { workspace = true }
dora-tracing = { path = "../../libraries/extensions/telemetry/tracing", optional = true }
dora-metrics = { path = "../../libraries/extensions/telemetry/metrics", optional = true }
opentelemetry = { version = "0.17", features = [


+ 2
- 2
examples/iceoryx/node/Cargo.toml View File

@@ -1,11 +1,11 @@
[package]
name = "iceoryx-example-node"
version = "0.1.1"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true, features = ["iceoryx"] }
eyre = "0.6.8"
rand = "0.8.5"

+ 1
- 1
examples/iceoryx/operator/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "iceoryx-example-operator"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 2
- 2
examples/iceoryx/sink/Cargo.toml View File

@@ -1,12 +1,12 @@
[package]
name = "iceoryx-example-sink"
version = "0.1.1"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true, features = ["iceoryx"] }
eyre = "0.6.8"
futures = "0.3.21"
tokio = { version = "1.20.1", features = ["macros"] }

+ 2
- 2
examples/rust-dataflow-url/sink/Cargo.toml View File

@@ -1,10 +1,10 @@
[package]
name = "rust-dataflow-example-sink"
version = "0.1.1"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true, features = ["zenoh"] }
eyre = "0.6.8"

+ 2
- 2
examples/rust-dataflow/node/Cargo.toml View File

@@ -1,12 +1,12 @@
[package]
name = "rust-dataflow-example-node"
version = "0.1.1"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true, features = ["zenoh"] }
eyre = "0.6.8"
futures = "0.3.21"
rand = "0.8.5"


+ 1
- 1
examples/rust-dataflow/operator/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "rust-dataflow-example-operator"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 2
- 2
examples/rust-dataflow/sink/Cargo.toml View File

@@ -1,10 +1,10 @@
[package]
name = "rust-dataflow-example-sink"
version = "0.1.1"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true, features = ["zenoh"] }
eyre = "0.6.8"

+ 1
- 1
libraries/communication-layer/pub-sub/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "communication-layer-pub-sub"
version = "0.1.1"
version.workspace = true
edition = "2021"

[features]


+ 1
- 1
libraries/communication-layer/request-reply/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "communication-layer-request-reply"
version = "0.1.1"
version.workspace = true
edition = "2021"

[features]


+ 1
- 1
libraries/core/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-core"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 1
- 1
libraries/extensions/download/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-download"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 1
- 1
libraries/extensions/telemetry/metrics/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-metrics"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 1
- 1
libraries/extensions/telemetry/tracing/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-tracing"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 1
- 1
libraries/extensions/zenoh-logger/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "zenoh-logger"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 1
- 1
libraries/message/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-message"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



Loading…
Cancel
Save