Skip to content

Commit 201101c

Browse files
committed
Bump to v0.15.0-alpha.14
1 parent c2e5885 commit 201101c

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "distant"
33
description = "Operate on a remote computer through file and process manipulation"
44
categories = ["command-line-utilities"]
55
keywords = ["cli"]
6-
version = "0.15.0-alpha.12"
6+
version = "0.15.0-alpha.14"
77
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
88
edition = "2018"
99
homepage = "https://github.com/chipsenkbeil/distant"
@@ -25,7 +25,7 @@ ssh2 = ["distant-ssh2"]
2525

2626
[dependencies]
2727
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error", "is_variant"] }
28-
distant-core = { version = "=0.15.0-alpha.12", path = "distant-core", features = ["structopt"] }
28+
distant-core = { version = "=0.15.0-alpha.14", path = "distant-core", features = ["structopt"] }
2929
flexi_logger = "0.18.0"
3030
log = "0.4.14"
3131
once_cell = "1.8.0"
@@ -37,7 +37,7 @@ strum = { version = "0.21.0", features = ["derive"] }
3737
whoami = "1.1.2"
3838

3939
# Optional native SSH functionality
40-
distant-ssh2 = { version = "=0.15.0-alpha.12", path = "distant-ssh2", optional = true }
40+
distant-ssh2 = { version = "=0.15.0-alpha.14", path = "distant-ssh2", optional = true }
4141

4242
[target.'cfg(unix)'.dependencies]
4343
fork = "0.1.18"

distant-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "distant-core"
33
description = "Core library for distant, enabling operation on a remote computer through file and process manipulation"
44
categories = ["network-programming"]
55
keywords = ["api", "async"]
6-
version = "0.15.0-alpha.12"
6+
version = "0.15.0-alpha.14"
77
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
88
edition = "2018"
99
homepage = "https://github.com/chipsenkbeil/distant"

distant-lua/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "distant-lua"
33
description = "Lua bindings to the distant Rust crates"
44
categories = ["api-bindings", "network-programming"]
55
keywords = ["api", "async"]
6-
version = "0.15.0-alpha.12"
6+
version = "0.15.0-alpha.14"
77
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
88
edition = "2018"
99
homepage = "https://github.com/chipsenkbeil/distant"
@@ -24,8 +24,8 @@ luajit = ["mlua/luajit"]
2424
vendored = ["mlua/vendored"]
2525

2626
[dependencies]
27-
distant-core = { version = "=0.15.0-alpha.12", path = "../distant-core" }
28-
distant-ssh2 = { version = "=0.15.0-alpha.12", features = ["serde"], path = "../distant-ssh2" }
27+
distant-core = { version = "=0.15.0-alpha.14", path = "../distant-core" }
28+
distant-ssh2 = { version = "=0.15.0-alpha.14", features = ["serde"], path = "../distant-ssh2" }
2929
futures = "0.3.17"
3030
log = "0.4.14"
3131
mlua = { git = "https://github.com/khvzak/mlua.git", features = ["async", "macros", "module", "serialize"] }

distant-ssh2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "distant-ssh2"
33
description = "Library to enable native ssh-2 protocol for use with distant sessions"
44
categories = ["network-programming"]
5-
version = "0.15.0-alpha.12"
5+
version = "0.15.0-alpha.14"
66
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
77
edition = "2018"
88
homepage = "https://github.com/chipsenkbeil/distant"
@@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
1212

1313
[dependencies]
1414
async-compat = "0.2.1"
15-
distant-core = { version = "=0.15.0-alpha.12", path = "../distant-core" }
15+
distant-core = { version = "=0.15.0-alpha.14", path = "../distant-core" }
1616
futures = "0.3.16"
1717
log = "0.4.14"
1818
rand = { version = "0.8.4", features = ["getrandom"] }

0 commit comments

Comments
 (0)