Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flxo committed Oct 26, 2022
1 parent b5d8500 commit a304d17
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions northstar-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "northstar-client"
version = "0.6.1-pre"
version = "0.7.0"
authors = ["ESRLabs"]
description = "Northstar is an container runtime for Linux targetting embedded systems"
edition = "2021"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/esrlabs/northstar"
[dependencies]
anyhow = { version = "1.0.66", features = ["backtrace"] }
futures = "0.3.24"
northstar-runtime = { version = "^0.6.1-pre", path = "../northstar-runtime", features = ["api"] }
northstar-runtime = { version = "0.7.0", path = "../northstar-runtime", features = ["api"] }
thiserror = "1.0.37"
tokio = "1.21.2"

6 changes: 3 additions & 3 deletions northstar-nstar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "northstar-nstar"
version = "0.6.1-pre"
version = "0.7.0"
authors = ["ESRLabs"]
description = "Northstar is an container runtime for Linux targetting embedded systems"
edition = "2021"
Expand All @@ -16,8 +16,8 @@ clap_complete = "4.0.3"
futures = { version = "0.3.24", default-features = false }
humantime = "2.1.0"
itertools = "0.10.5"
northstar-client = { version = "^0.6.1-pre", path = "../northstar-client" }
northstar-runtime = { version = "^0.6.1-pre", path = "../northstar-runtime", features = ["seccomp"] }
northstar-client = { version = "0.7.0", path = "../northstar-client" }
northstar-runtime = { version = "0.7.0", path = "../northstar-runtime", features = ["seccomp"] }
pin-project-lite = "0.2.9"
prettytable-rs = "0.9.0"
regex = "1.6.0"
Expand Down
2 changes: 1 addition & 1 deletion northstar-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "northstar-runtime"
version = "0.6.1-pre"
version = "0.7.0"
authors = ["ESRLabs"]
build = "build.rs"
description = "Northstar is an container runtime for Linux targetting embedded systems"
Expand Down
4 changes: 2 additions & 2 deletions northstar-sextant/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "northstar-sextant"
version = "0.6.1-pre"
version = "0.7.0"
authors = ["ESRLabs"]
description = "Northstar is an container runtime for Linux targetting embedded systems"
edition = "2021"
Expand All @@ -16,6 +16,6 @@ colored = "2.0.0"
ed25519-dalek = "1.0.1"
env_logger = "0.9.1"
log = "0.4.17"
northstar-runtime = { version = "^0.6.1-pre", path = "../northstar-runtime", features = ["npk"] }
northstar-runtime = { version = "0.7.0", path = "../northstar-runtime", features = ["npk"] }
tempfile = "3.3.0"
zip = { version = "0.6.3", default-features = false }
2 changes: 1 addition & 1 deletion northstar-stress/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "northstar-stress"
version = "0.6.1-pre"
version = "0.7.0"
authors = ["ESRLabs"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion northstar-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "northstar-tests"
version = "0.6.1-pre"
version = "0.7.0"
authors = ["ESRLabs"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion northstar-tests/northstar-tests-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "northstar-tests-derive"
version = "0.6.1-pre"
version = "0.7.0"
edition = "2021"
license = "Apache-2.0"

Expand Down
4 changes: 2 additions & 2 deletions northstar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "northstar"
version = "0.6.1-pre"
version = "0.7.0"
authors = ["ESRLabs"]
description = "Northstar is an container runtime for Linux targetting embedded systems"
edition = "2021"
Expand All @@ -14,7 +14,7 @@ anyhow = { version = "1.0.66", features = ["backtrace"] }
clap = { version = "4.0.18", features = ["derive"] }
log = "0.4.17"
nix = { version = "0.25.0", default-features = false, features = ["sched", "mount"] }
northstar-runtime = { version = "^0.6.1-pre", path = "../northstar-runtime", features = ["runtime", "rexec"] }
northstar-runtime = { version = "0.7.0", path = "../northstar-runtime", features = ["runtime", "rexec"] }
tokio = { version = "1.21.2", features = ["rt-multi-thread", "macros", "signal"] }
toml = "0.5.9"

Expand Down

0 comments on commit a304d17

Please sign in to comment.