Skip to content

Commit bd81c86

Browse files
committed
Bump version to 0.2.0
1 parent cde621a commit bd81c86

File tree

7 files changed

+56
-9
lines changed

7 files changed

+56
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
members = ["crates/*"]
33
resolver = "2"
44

5+
[workspace.package]
6+
version = "0.2.0"
7+
authors = ["Eric Zhang <[email protected]>"]
8+
license = "MIT"
9+
description = "A secure web-based, collaborative terminal."
10+
repository = "https://github.com/ekzhang/sshx"
11+
documentation = "https://sshx.io"
12+
keywords = ["ssh", "share", "terminal", "collaborative"]
13+
514
[workspace.dependencies]
615
anyhow = "1.0.62"
716
clap = { version = "4.4.2", features = ["derive", "env"] }

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Eric Zhang
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

crates/sshx-core/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
[package]
22
name = "sshx-core"
3-
version = "0.1.0"
3+
version.workspace = true
4+
authors.workspace = true
5+
license.workspace = true
6+
description.workspace = true
7+
repository.workspace = true
8+
documentation.workspace = true
9+
keywords.workspace = true
410
edition = "2021"
511

612
[dependencies]

crates/sshx-server/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
[package]
22
name = "sshx-server"
3-
version = "0.1.0"
3+
version.workspace = true
4+
authors.workspace = true
5+
license.workspace = true
6+
description.workspace = true
7+
repository.workspace = true
8+
documentation.workspace = true
9+
keywords.workspace = true
410
edition = "2021"
511

612
[dependencies]
@@ -24,7 +30,7 @@ rand.workspace = true
2430
redis = { version = "0.23.3", features = ["tokio-rustls-comp", "tls-rustls-webpki-roots"] }
2531
serde.workspace = true
2632
sha2 = "0.10.7"
27-
sshx-core = { path = "../sshx-core" }
33+
sshx-core = { version = "0.2.0", path = "../sshx-core" }
2834
tokio.workspace = true
2935
tokio-stream.workspace = true
3036
tokio-tungstenite = "0.20.0"

crates/sshx/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
[package]
22
name = "sshx"
3-
version = "0.1.0"
3+
version.workspace = true
4+
authors.workspace = true
5+
license.workspace = true
6+
description.workspace = true
7+
repository.workspace = true
8+
documentation.workspace = true
9+
keywords.workspace = true
410
edition = "2021"
511

612
[dependencies]
@@ -14,7 +20,7 @@ ctr = "0.9.2"
1420
encoding_rs = "0.8.31"
1521
nix = { version = "0.27.1", features = ["ioctl", "process", "signal", "term"] }
1622
pin-project = "1.1.3"
17-
sshx-core = { path = "../sshx-core" }
23+
sshx-core = { version = "0.2.0", path = "../sshx-core" }
1824
tokio.workspace = true
1925
tokio-stream.workspace = true
2026
tonic.workspace = true

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const commitHash = execSync("git rev-parse --short HEAD").toString().trim();
77

88
export default defineConfig({
99
define: {
10-
__APP_VERSION__: JSON.stringify("0.0.0-" + commitHash),
10+
__APP_VERSION__: JSON.stringify("0.2.0-" + commitHash),
1111
},
1212

1313
plugins: [sveltekit()],

0 commit comments

Comments
 (0)