Skip to content

Commit 7431843

Browse files
committed
Update version
1 parent 553f6b9 commit 7431843

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ path = './benches/criterion.rs'
88

99
[package]
1010
name = 'xplr'
11-
version = '0.20.0-beta.2'
11+
version = '0.20.0-beta.3'
1212
authors = ['Arijit Basu <[email protected]>']
1313
edition = '2021'
1414
description = 'A hackable, minimal, fast TUI file explorer'

docs/en/src/upgrade-guide.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ compatibility.
4545

4646
### Instructions
4747

48-
#### [v0.19.4][47] -> [v0.20.0-beta.2][48]
48+
#### [v0.19.4][47] -> [v0.20.0-beta.3][48]
4949

5050
- BREAKING: xplr shell (`:!`) will default to null (`\0`) delimited pipes, as
5151
opposed to newline (`\n`) delimited ones (i.e. will use `Call0` instead of
@@ -68,6 +68,12 @@ compatibility.
6868
- Use `--vroot` to isolate navigation of an xplr session inside a specific
6969
directory. Interaction still requires passing full path, and shell,
7070
lua functions etc still can access paths outside vroot.
71+
- Use the following messages to switch vroot at runtime, or the use key
72+
bindings available in the new builtin mode "vroot" (mapped to `:` `v`).
73+
- SetVroot
74+
- UnsetVroot
75+
- ToggleVroot
76+
- ResetVroot
7177

7278
#### [v0.18.0][46] -> [v0.19.4][47]
7379

@@ -426,4 +432,4 @@ Else do the following:
426432
[45]: https://github.com/sayanarijit/xplr/releases/tag/v0.17.6
427433
[46]: https://github.com/sayanarijit/xplr/releases/tag/v0.18.0
428434
[47]: https://github.com/sayanarijit/xplr/releases/tag/v0.19.4
429-
[48]: https://github.com/sayanarijit/xplr/releases/tag/v0.20.0-beta.2
435+
[48]: https://github.com/sayanarijit/xplr/releases/tag/v0.20.0-beta.3

src/lua.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,24 +155,24 @@ mod tests {
155155
assert!(check_version(VERSION, "foo path").is_ok());
156156

157157
// Current release if OK
158-
assert!(check_version("0.20.0-beta.2", "foo path").is_ok());
158+
assert!(check_version("0.20.0-beta.3", "foo path").is_ok());
159159

160160
// Prev major release is ERR
161161
// - Not yet
162162

163163
// Prev minor release is ERR (Change when we get to v1)
164-
assert!(check_version("0.19.0-beta.2", "foo path").is_err());
164+
assert!(check_version("0.19.0-beta.3", "foo path").is_err());
165165

166166
// Prev bugfix release is OK
167167
// assert!(check_version("0.20.-1", "foo path").is_ok());
168168

169169
// Next major release is ERR
170-
assert!(check_version("1.20.0-beta.2", "foo path").is_err());
170+
assert!(check_version("1.20.0-beta.3", "foo path").is_err());
171171

172172
// Next minor release is ERR
173-
assert!(check_version("0.21.0-beta.2", "foo path").is_err());
173+
assert!(check_version("0.21.0-beta.3", "foo path").is_err());
174174

175175
// Next bugfix release is ERR (Change when we get to v1)
176-
assert!(check_version("0.20.1-beta.2", "foo path").is_err());
176+
assert!(check_version("0.20.1-beta.3", "foo path").is_err());
177177
}
178178
}

0 commit comments

Comments
 (0)