From 132b5264d1656c99bb766ac6b92a522c6290e6cf Mon Sep 17 00:00:00 2001 From: Felix Obenhuber Date: Wed, 10 May 2023 13:49:47 +0200 Subject: [PATCH] Release 0.8.1 --- Cargo.lock | 18 +++++++++--------- cargo-npk/Cargo.toml | 4 ++-- northstar-client/Cargo.toml | 4 ++-- northstar-nstar/Cargo.toml | 6 +++--- northstar-runtime/Cargo.toml | 2 +- northstar-sextant/Cargo.toml | 4 ++-- northstar-stress/Cargo.toml | 2 +- northstar-tests/Cargo.toml | 2 +- .../northstar-tests-derive/Cargo.toml | 2 +- northstar/Cargo.toml | 4 ++-- 10 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ace86a14b..0b26a07e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "cargo-npk" -version = "0.8.1-pre" +version = "0.8.1" dependencies = [ "anyhow", "atty", @@ -1516,7 +1516,7 @@ dependencies = [ [[package]] name = "northstar" -version = "0.8.1-pre" +version = "0.8.1" dependencies = [ "android-logd-logger", "anyhow", @@ -1534,7 +1534,7 @@ dependencies = [ [[package]] name = "northstar-client" -version = "0.8.1-pre" +version = "0.8.1" dependencies = [ "anyhow", "futures", @@ -1545,7 +1545,7 @@ dependencies = [ [[package]] name = "northstar-nstar" -version = "0.8.1-pre" +version = "0.8.1" dependencies = [ "anyhow", "base64", @@ -1568,7 +1568,7 @@ dependencies = [ [[package]] name = "northstar-runtime" -version = "0.8.1-pre" +version = "0.8.1" dependencies = [ "anyhow", "async-stream", @@ -1630,7 +1630,7 @@ dependencies = [ [[package]] name = "northstar-sextant" -version = "0.8.1-pre" +version = "0.8.1" dependencies = [ "anyhow", "clap 4.2.7", @@ -1643,7 +1643,7 @@ dependencies = [ [[package]] name = "northstar-stress" -version = "0.8.1-pre" +version = "0.8.1" dependencies = [ "anyhow", "clap 4.2.7", @@ -1661,7 +1661,7 @@ dependencies = [ [[package]] name = "northstar-tests" -version = "0.8.1-pre" +version = "0.8.1" dependencies = [ "anyhow", "env_logger", @@ -1682,7 +1682,7 @@ dependencies = [ [[package]] name = "northstar-tests-derive" -version = "0.8.1-pre" +version = "0.8.1" dependencies = [ "proc-macro2", "quote", diff --git a/cargo-npk/Cargo.toml b/cargo-npk/Cargo.toml index 8bf3ca508..65aeb4548 100644 --- a/cargo-npk/Cargo.toml +++ b/cargo-npk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-npk" -version = "0.8.1-pre" +version = "0.8.1" edition = "2021" license = "Apache-2.0" description = "Northstar is an container runtime for Linux targetting embedded systems" @@ -16,7 +16,7 @@ cargo_metadata = "0.15.3" clap = { version = "4.2.7", features = ["derive"] } human_bytes = "0.4.2" humantime = "2.1.0" -northstar-runtime = { version = "^0.8.1-pre", path = "../northstar-runtime", features = ["npk"] } +northstar-runtime = { version = "^0.8.1", path = "../northstar-runtime", features = ["npk"] } serde = { version = "1.0.162", features = ["derive"] } tempfile = "3.5.0" termcolor = "1.2.0" diff --git a/northstar-client/Cargo.toml b/northstar-client/Cargo.toml index 4e7d8311c..cf04f667a 100644 --- a/northstar-client/Cargo.toml +++ b/northstar-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "northstar-client" -version = "0.8.1-pre" +version = "0.8.1" authors = ["ESRLabs"] description = "Northstar is an container runtime for Linux targetting embedded systems" edition = "2021" @@ -11,7 +11,7 @@ repository = "https://github.com/esrlabs/northstar" [dependencies] anyhow = { version = "1.0.71", features = ["backtrace"] } futures = "0.3.27" -northstar-runtime = { version = "^0.8.1-pre", path = "../northstar-runtime", features = ["api"] } +northstar-runtime = { version = "^0.8.1", path = "../northstar-runtime", features = ["api"] } thiserror = "1.0.40" tokio = "1.28.0" diff --git a/northstar-nstar/Cargo.toml b/northstar-nstar/Cargo.toml index 7b1616b08..d5d6e7f72 100644 --- a/northstar-nstar/Cargo.toml +++ b/northstar-nstar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "northstar-nstar" -version = "0.8.1-pre" +version = "0.8.1" authors = ["ESRLabs"] description = "Northstar is an container runtime for Linux targetting embedded systems" edition = "2021" @@ -16,8 +16,8 @@ clap_complete = "4.2.1" futures = { version = "0.3.27", default-features = false } humantime = "2.1.0" itertools = "0.10.5" -northstar-client = { version = "^0.8.1-pre", path = "../northstar-client" } -northstar-runtime = { version = "^0.8.1-pre", path = "../northstar-runtime", features = ["seccomp"] } +northstar-client = { version = "^0.8.1", path = "../northstar-client" } +northstar-runtime = { version = "^0.8.1", path = "../northstar-runtime", features = ["seccomp"] } pin-project-lite = "0.2.9" prettytable-rs = "0.10.0" regex = "1.7.3" diff --git a/northstar-runtime/Cargo.toml b/northstar-runtime/Cargo.toml index e9e8f7184..163b10a5e 100644 --- a/northstar-runtime/Cargo.toml +++ b/northstar-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "northstar-runtime" -version = "0.8.1-pre" +version = "0.8.1" authors = ["ESRLabs"] build = "build.rs" description = "Northstar is an container runtime for Linux targetting embedded systems" diff --git a/northstar-sextant/Cargo.toml b/northstar-sextant/Cargo.toml index 5f9a0aec0..0d9958edd 100644 --- a/northstar-sextant/Cargo.toml +++ b/northstar-sextant/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "northstar-sextant" -version = "0.8.1-pre" +version = "0.8.1" authors = ["ESRLabs"] description = "Northstar is an container runtime for Linux targetting embedded systems" edition = "2021" @@ -13,6 +13,6 @@ anyhow = { version = "1.0.71", features = ["backtrace"] } clap = { version = "4.2.7", features = ["derive"] } colored = "2.0.0" env_logger = "0.10.0" -northstar-runtime = { version = "^0.8.1-pre", path = "../northstar-runtime", features = ["npk"] } +northstar-runtime = { version = "^0.8.1", path = "../northstar-runtime", features = ["npk"] } tempfile = "3.5.0" zip = { version = "0.6.4", default-features = false } diff --git a/northstar-stress/Cargo.toml b/northstar-stress/Cargo.toml index e6d39cd7b..8ad6b1301 100644 --- a/northstar-stress/Cargo.toml +++ b/northstar-stress/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "northstar-stress" -version = "0.8.1-pre" +version = "0.8.1" authors = ["ESRLabs"] edition = "2021" license = "Apache-2.0" diff --git a/northstar-tests/Cargo.toml b/northstar-tests/Cargo.toml index 303c063d8..0491b4870 100644 --- a/northstar-tests/Cargo.toml +++ b/northstar-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "northstar-tests" -version = "0.8.1-pre" +version = "0.8.1" authors = ["ESRLabs"] edition = "2021" license = "Apache-2.0" diff --git a/northstar-tests/northstar-tests-derive/Cargo.toml b/northstar-tests/northstar-tests-derive/Cargo.toml index dc04d09c4..9c7e9894d 100644 --- a/northstar-tests/northstar-tests-derive/Cargo.toml +++ b/northstar-tests/northstar-tests-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "northstar-tests-derive" -version = "0.8.1-pre" +version = "0.8.1" edition = "2021" license = "Apache-2.0" diff --git a/northstar/Cargo.toml b/northstar/Cargo.toml index 67b4b1a81..f117b7711 100644 --- a/northstar/Cargo.toml +++ b/northstar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "northstar" -version = "0.8.1-pre" +version = "0.8.1" authors = ["ESRLabs"] description = "Northstar is an container runtime for Linux targetting embedded systems" edition = "2021" @@ -14,7 +14,7 @@ anyhow = { version = "1.0.71", features = ["backtrace"] } clap = { version = "4.2.7", features = ["derive"] } log = "0.4.17" nix = { version = "0.26.2", default-features = false, features = ["sched", "mount"] } -northstar-runtime = { version = "^0.8.1-pre", path = "../northstar-runtime", features = ["runtime", "rexec"] } +northstar-runtime = { version = "^0.8.1", path = "../northstar-runtime", features = ["runtime", "rexec"] } tokio = { version = "1.28.0", features = ["rt-multi-thread", "macros", "signal"] } toml = "0.7.3"