From ef30dde4836f3c4dfdc17db837872c0a7ebc048f Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Sat, 6 Apr 2024 17:15:10 -0400 Subject: [PATCH] Version 0.2.3 --- Cargo.lock | 6 +++--- Cargo.toml | 3 ++- crates/sshx-server/Cargo.toml | 2 +- crates/sshx/Cargo.toml | 2 +- vite.config.ts | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 48e2413..83e0638 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1695,7 +1695,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "sshx" -version = "0.2.2" +version = "0.2.3" dependencies = [ "aes", "ansi_term", @@ -1717,7 +1717,7 @@ dependencies = [ [[package]] name = "sshx-core" -version = "0.2.2" +version = "0.2.3" dependencies = [ "prost", "rand", @@ -1728,7 +1728,7 @@ dependencies = [ [[package]] name = "sshx-server" -version = "0.2.2" +version = "0.2.3" dependencies = [ "anyhow", "async-channel", diff --git a/Cargo.toml b/Cargo.toml index 0fb0926..15e567b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.2.2" +version = "0.2.3" authors = ["Eric Zhang "] license = "MIT" description = "A secure web-based, collaborative terminal." @@ -17,6 +17,7 @@ clap = { version = "4.4.2", features = ["derive", "env"] } prost = "0.12.0" rand = "0.8.5" serde = { version = "1.0.188", features = ["derive", "rc"] } +sshx-core = { version = "0.2.3", path = "crates/sshx-core" } tokio = { version = "1.32.0", features = ["full"] } tokio-stream = { version = "0.1.14", features = ["sync"] } tonic = { version = "0.10.0", features = ["tls", "tls-webpki-roots"] } diff --git a/crates/sshx-server/Cargo.toml b/crates/sshx-server/Cargo.toml index 9faa475..2aa3c51 100644 --- a/crates/sshx-server/Cargo.toml +++ b/crates/sshx-server/Cargo.toml @@ -30,7 +30,7 @@ rand.workspace = true redis = { version = "0.23.3", features = ["tokio-rustls-comp", "tls-rustls-webpki-roots"] } serde.workspace = true sha2 = "0.10.7" -sshx-core = { version = "0.2.2", path = "../sshx-core" } +sshx-core.workspace = true tokio.workspace = true tokio-stream.workspace = true tokio-tungstenite = "0.20.0" diff --git a/crates/sshx/Cargo.toml b/crates/sshx/Cargo.toml index 52a2273..0ac8815 100644 --- a/crates/sshx/Cargo.toml +++ b/crates/sshx/Cargo.toml @@ -20,7 +20,7 @@ ctr = "0.9.2" encoding_rs = "0.8.31" nix = { version = "0.27.1", features = ["ioctl", "process", "signal", "term"] } pin-project = "1.1.3" -sshx-core = { version = "0.2.2", path = "../sshx-core" } +sshx-core.workspace = true tokio.workspace = true tokio-stream.workspace = true tonic.workspace = true diff --git a/vite.config.ts b/vite.config.ts index dccb70d..ce286eb 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -7,7 +7,7 @@ const commitHash = execSync("git rev-parse --short HEAD").toString().trim(); export default defineConfig({ define: { - __APP_VERSION__: JSON.stringify("0.2.2-" + commitHash), + __APP_VERSION__: JSON.stringify("0.2.3-" + commitHash), }, plugins: [sveltekit()],