Skip to content

Commit

Permalink
Version 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ekzhang committed Apr 6, 2024
1 parent 83d1e05 commit ef30dde
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.2.2"
version = "0.2.3"
authors = ["Eric Zhang <ekzhang1@gmail.com>"]
license = "MIT"
description = "A secure web-based, collaborative terminal."
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/sshx-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/sshx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()],
Expand Down

0 comments on commit ef30dde

Please sign in to comment.