Skip to content

Commit

Permalink
Mark version as pre-release 0.15.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chipsenkbeil committed Sep 28, 2021
1 parent e136686 commit 56a7962
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "distant"
description = "Operate on a remote computer through file and process manipulation"
categories = ["command-line-utilities"]
keywords = ["cli"]
version = "0.15.0"
version = "0.15.0-alpha.1"
authors = ["Chip Senkbeil <[email protected]>"]
edition = "2018"
homepage = "https://github.com/chipsenkbeil/distant"
Expand All @@ -28,7 +28,7 @@ ssh2 = ["distant-ssh2"]

[dependencies]
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error", "is_variant"] }
distant-core = { version = "=0.15.0", path = "distant-core", features = ["structopt"] }
distant-core = { version = "=0.15.0-alpha.1", path = "distant-core", features = ["structopt"] }
flexi_logger = "0.18.0"
fork = "0.1.18"
log = "0.4.14"
Expand All @@ -41,7 +41,7 @@ strum = { version = "0.21.0", features = ["derive"] }
whoami = "1.1.2"

# Optional native SSH functionality
distant-ssh2 = { version = "=0.15.0", path = "distant-ssh2", optional = true }
distant-ssh2 = { version = "=0.15.0-alpha.1", path = "distant-ssh2", optional = true }

[dev-dependencies]
assert_cmd = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion distant-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "distant-core"
description = "Core library for distant, enabling operation on a remote computer through file and process manipulation"
categories = ["network-programming"]
version = "0.15.0"
version = "0.15.0-alpha.1"
authors = ["Chip Senkbeil <[email protected]>"]
edition = "2018"
homepage = "https://github.com/chipsenkbeil/distant"
Expand Down
4 changes: 2 additions & 2 deletions distant-ssh2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "distant-ssh2"
description = "Library to enable native ssh-2 protocol for use with distant sessions"
categories = ["network-programming"]
version = "0.15.0"
version = "0.15.0-alpha.1"
authors = ["Chip Senkbeil <[email protected]>"]
edition = "2018"
homepage = "https://github.com/chipsenkbeil/distant"
Expand All @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"

[dependencies]
async-compat = "0.2.1"
distant-core = { version = "=0.15.0", path = "../distant-core" }
distant-core = { version = "=0.15.0-alpha.1", path = "../distant-core" }
futures = "0.3.16"
log = "0.4.14"
rand = { version = "0.8.4", features = ["getrandom"] }
Expand Down

0 comments on commit 56a7962

Please sign in to comment.