Skip to content

Commit 0320e7f

Browse files
committed
Bump to v0.20.0
1 parent 9e48300 commit 0320e7f

File tree

9 files changed

+41
-23
lines changed

9 files changed

+41
-23
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.20.0]
11+
12+
All changes described in these alpha releases:
13+
14+
- [Alpha 13](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.13)
15+
- [Alpha 12](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.12)
16+
- [Alpha 11](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.11)
17+
- [Alpha 10](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.10)
18+
- [Alpha 9](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.9)
19+
- [Alpha 8](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.8)
20+
- [Alpha 7](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.7)
21+
- [Alpha 6](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.6)
22+
- [Alpha 5](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.5)
23+
- [Alpha 4](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.4)
24+
- [Alpha 3](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.3)
25+
- [Alpha 2](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.2)
26+
- [Alpha 1](https://github.com/chipsenkbeil/distant/releases/tag/v0.20.0-alpha.1)
27+
1028
### Fixed
1129

1230
- When terminating a connection using `distant manager kill`, the connection is

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 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.20.0-alpha.13"
6+
version = "0.20.0"
77
authors = ["Chip Senkbeil <[email protected]>"]
88
edition = "2021"
99
homepage = "https://github.com/chipsenkbeil/distant"
@@ -40,8 +40,8 @@ clap_complete = "4.3.0"
4040
config = { version = "0.13.3", default-features = false, features = ["toml"] }
4141
derive_more = { version = "0.99.17", default-features = false, features = ["display", "from", "error", "is_variant"] }
4242
dialoguer = { version = "0.10.4", default-features = false }
43-
distant-core = { version = "=0.20.0-alpha.13", path = "distant-core" }
44-
distant-local = { version = "=0.20.0-alpha.13", path = "distant-local" }
43+
distant-core = { version = "=0.20.0", path = "distant-core" }
44+
distant-local = { version = "=0.20.0", path = "distant-local" }
4545
directories = "5.0.1"
4646
file-mode = "0.1.2"
4747
flexi_logger = "0.25.5"
@@ -65,7 +65,7 @@ winsplit = "0.1.0"
6565
whoami = "1.4.0"
6666

6767
# Optional native SSH functionality
68-
distant-ssh2 = { version = "=0.20.0-alpha.13", path = "distant-ssh2", default-features = false, features = ["serde"], optional = true }
68+
distant-ssh2 = { version = "=0.20.0", path = "distant-ssh2", default-features = false, features = ["serde"], optional = true }
6969

7070
[target.'cfg(unix)'.dependencies]
7171
fork = "0.1.21"

distant-auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "distant-auth"
33
description = "Authentication library for distant, providing various implementations"
44
categories = ["authentication"]
55
keywords = ["auth", "authentication", "async"]
6-
version = "0.20.0-alpha.13"
6+
version = "0.20.0"
77
authors = ["Chip Senkbeil <[email protected]>"]
88
edition = "2021"
99
homepage = "https://github.com/chipsenkbeil/distant"

distant-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.20.0-alpha.13"
6+
version = "0.20.0"
77
authors = ["Chip Senkbeil <[email protected]>"]
88
edition = "2021"
99
homepage = "https://github.com/chipsenkbeil/distant"
@@ -16,8 +16,8 @@ async-trait = "0.1.68"
1616
bitflags = "2.3.1"
1717
bytes = "1.4.0"
1818
derive_more = { version = "0.99.17", default-features = false, features = ["as_mut", "as_ref", "deref", "deref_mut", "display", "from", "error", "into", "into_iterator", "is_variant", "try_into"] }
19-
distant-net = { version = "=0.20.0-alpha.13", path = "../distant-net" }
20-
distant-protocol = { version = "=0.20.0-alpha.13", path = "../distant-protocol" }
19+
distant-net = { version = "=0.20.0", path = "../distant-net" }
20+
distant-protocol = { version = "=0.20.0", path = "../distant-protocol" }
2121
futures = "0.3.28"
2222
hex = "0.4.3"
2323
log = "0.4.18"

distant-local/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "distant-local"
33
description = "Library implementing distant API for local interactions"
44
categories = ["network-programming"]
5-
version = "0.20.0-alpha.13"
5+
version = "0.20.0"
66
authors = ["Chip Senkbeil <[email protected]>"]
77
edition = "2021"
88
homepage = "https://github.com/chipsenkbeil/distant"
@@ -21,7 +21,7 @@ macos-kqueue = ["notify/macos_kqueue"]
2121

2222
[dependencies]
2323
async-trait = "0.1.68"
24-
distant-core = { version = "=0.20.0-alpha.13", path = "../distant-core" }
24+
distant-core = { version = "=0.20.0", path = "../distant-core" }
2525
grep = "0.2.12"
2626
ignore = "0.4.20"
2727
log = "0.4.18"

distant-net/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "distant-net"
33
description = "Network library for distant, providing implementations to support client/server architecture"
44
categories = ["network-programming"]
55
keywords = ["api", "async"]
6-
version = "0.20.0-alpha.13"
6+
version = "0.20.0"
77
authors = ["Chip Senkbeil <[email protected]>"]
88
edition = "2021"
99
homepage = "https://github.com/chipsenkbeil/distant"
@@ -17,7 +17,7 @@ bytes = "1.4.0"
1717
chacha20poly1305 = "0.10.1"
1818
const-str = "0.5.6"
1919
derive_more = { version = "0.99.17", default-features = false, features = ["as_mut", "as_ref", "deref", "deref_mut", "display", "from", "error", "into", "into_iterator", "is_variant", "try_into"] }
20-
distant-auth = { version = "=0.20.0-alpha.13", path = "../distant-auth" }
20+
distant-auth = { version = "=0.20.0", path = "../distant-auth" }
2121
dyn-clone = "1.0.11"
2222
flate2 = "1.0.26"
2323
hex = "0.4.3"
@@ -37,7 +37,7 @@ strum = { version = "0.24.1", features = ["derive"] }
3737
tokio = { version = "1.28.2", features = ["full"] }
3838

3939
[dev-dependencies]
40-
distant-auth = { version = "=0.20.0-alpha.13", path = "../distant-auth", features = ["tests"] }
40+
distant-auth = { version = "=0.20.0", path = "../distant-auth", features = ["tests"] }
4141
env_logger = "0.10.0"
4242
serde_json = "1.0.96"
4343
tempfile = "3.5.0"

distant-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "distant-protocol"
33
description = "Protocol library for distant, providing data structures used between the client and server"
44
categories = ["data-structures"]
55
keywords = ["protocol"]
6-
version = "0.20.0-alpha.13"
6+
version = "0.20.0"
77
authors = ["Chip Senkbeil <[email protected]>"]
88
edition = "2021"
99
homepage = "https://github.com/chipsenkbeil/distant"

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.20.0-alpha.13"
5+
version = "0.20.0"
66
authors = ["Chip Senkbeil <[email protected]>"]
77
edition = "2021"
88
homepage = "https://github.com/chipsenkbeil/distant"
@@ -20,7 +20,7 @@ async-compat = "0.2.1"
2020
async-once-cell = "0.5.2"
2121
async-trait = "0.1.68"
2222
derive_more = { version = "0.99.17", default-features = false, features = ["display", "error"] }
23-
distant-core = { version = "=0.20.0-alpha.13", path = "../distant-core" }
23+
distant-core = { version = "=0.20.0", path = "../distant-core" }
2424
futures = "0.3.28"
2525
hex = "0.4.3"
2626
log = "0.4.18"

0 commit comments

Comments
 (0)