117 lines
3.2 KiB
Diff
117 lines
3.2 KiB
Diff
|
|
diff --git a/KubeOS-Rust/Cargo.lock b/KubeOS-Rust/Cargo.lock
|
||
|
|
index 2087339..c44c152 100644
|
||
|
|
--- a/KubeOS-Rust/Cargo.lock
|
||
|
|
+++ b/KubeOS-Rust/Cargo.lock
|
||
|
|
@@ -189,7 +189,7 @@ dependencies = [
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "cli"
|
||
|
|
-version = "0.1.0"
|
||
|
|
+version = "1.0.5"
|
||
|
|
dependencies = [
|
||
|
|
"anyhow",
|
||
|
|
"jsonrpc",
|
||
|
|
@@ -1092,7 +1092,7 @@ dependencies = [
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "manager"
|
||
|
|
-version = "0.1.0"
|
||
|
|
+version = "1.0.5"
|
||
|
|
dependencies = [
|
||
|
|
"anyhow",
|
||
|
|
"env_logger",
|
||
|
|
@@ -1335,7 +1335,7 @@ dependencies = [
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "os-agent"
|
||
|
|
-version = "0.1.0"
|
||
|
|
+version = "1.0.5"
|
||
|
|
dependencies = [
|
||
|
|
"anyhow",
|
||
|
|
"env_logger",
|
||
|
|
@@ -1498,7 +1498,7 @@ dependencies = [
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "proxy"
|
||
|
|
-version = "0.1.0"
|
||
|
|
+version = "1.0.5"
|
||
|
|
dependencies = [
|
||
|
|
"anyhow",
|
||
|
|
"assert-json-diff",
|
||
|
|
diff --git a/KubeOS-Rust/agent/Cargo.toml b/KubeOS-Rust/agent/Cargo.toml
|
||
|
|
index 6db4df4..739bbbc 100644
|
||
|
|
--- a/KubeOS-Rust/agent/Cargo.toml
|
||
|
|
+++ b/KubeOS-Rust/agent/Cargo.toml
|
||
|
|
@@ -3,7 +3,7 @@ description = "KubeOS os-agent"
|
||
|
|
edition = "2021"
|
||
|
|
license = "MulanPSL-2.0"
|
||
|
|
name = "os-agent"
|
||
|
|
-version = "0.1.0"
|
||
|
|
+version = "1.0.5"
|
||
|
|
|
||
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
[dependencies]
|
||
|
|
diff --git a/KubeOS-Rust/cli/Cargo.toml b/KubeOS-Rust/cli/Cargo.toml
|
||
|
|
index 1c46db3..c3c14c6 100644
|
||
|
|
--- a/KubeOS-Rust/cli/Cargo.toml
|
||
|
|
+++ b/KubeOS-Rust/cli/Cargo.toml
|
||
|
|
@@ -3,7 +3,7 @@ description = "KubeOS os-agent client"
|
||
|
|
edition = "2021"
|
||
|
|
license = "MulanPSL-2.0"
|
||
|
|
name = "cli"
|
||
|
|
-version = "0.1.0"
|
||
|
|
+version = "1.0.5"
|
||
|
|
|
||
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
[dependencies]
|
||
|
|
diff --git a/KubeOS-Rust/manager/Cargo.toml b/KubeOS-Rust/manager/Cargo.toml
|
||
|
|
index 9431fba..311a87c 100644
|
||
|
|
--- a/KubeOS-Rust/manager/Cargo.toml
|
||
|
|
+++ b/KubeOS-Rust/manager/Cargo.toml
|
||
|
|
@@ -3,7 +3,7 @@ description = "KubeOS os-agent manager"
|
||
|
|
edition = "2021"
|
||
|
|
license = "MulanPSL-2.0"
|
||
|
|
name = "manager"
|
||
|
|
-version = "0.1.0"
|
||
|
|
+version = "1.0.5"
|
||
|
|
|
||
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
[dev-dependencies]
|
||
|
|
diff --git a/KubeOS-Rust/proxy/Cargo.toml b/KubeOS-Rust/proxy/Cargo.toml
|
||
|
|
index 72eb6b9..fe657af 100644
|
||
|
|
--- a/KubeOS-Rust/proxy/Cargo.toml
|
||
|
|
+++ b/KubeOS-Rust/proxy/Cargo.toml
|
||
|
|
@@ -3,7 +3,7 @@ description = "KubeOS os-proxy"
|
||
|
|
edition = "2021"
|
||
|
|
license = "MulanPSL-2.0"
|
||
|
|
name = "proxy"
|
||
|
|
-version = "0.1.0"
|
||
|
|
+version = "1.0.5"
|
||
|
|
|
||
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
[lib]
|
||
|
|
@@ -18,14 +18,14 @@ path = "src/main.rs"
|
||
|
|
anyhow = "1.0.44"
|
||
|
|
async-trait = "0.1"
|
||
|
|
chrono = { version = "0.4", default-features = false, features = ["std"] }
|
||
|
|
-cli = { version = "0.1.0", path = "../cli" }
|
||
|
|
+cli = { version = "1.0.5", path = "../cli" }
|
||
|
|
env_logger = "0.9.0"
|
||
|
|
futures = "0.3.17"
|
||
|
|
h2 = "=0.3.16"
|
||
|
|
k8s-openapi = { version = "0.13.1", features = ["v1_22"] }
|
||
|
|
kube = { version = "0.66.0", features = ["derive", "runtime"] }
|
||
|
|
log = "=0.4.15"
|
||
|
|
-manager = { version = "0.1.0", path = "../manager" }
|
||
|
|
+manager = { version = "1.0.5", path = "../manager" }
|
||
|
|
regex = "=1.7.3"
|
||
|
|
reqwest = { version = "=0.11.18", default-features = false, features = [
|
||
|
|
"json",
|
||
|
|
diff --git a/VERSION b/VERSION
|
||
|
|
index ee90284..90a27f9 100644
|
||
|
|
--- a/VERSION
|
||
|
|
+++ b/VERSION
|
||
|
|
@@ -1 +1 @@
|
||
|
|
-1.0.4
|
||
|
|
+1.0.5
|