diff --git a/Cargo.lock b/Cargo.lock index e057879..dce7363 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1115,7 +1115,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "xplr" -version = "0.14.3" +version = "0.14.4" dependencies = [ "ansi-to-tui", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 94e0171..0ed4106 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xplr" -version = "0.14.3" # Update lua.rs +version = "0.14.4" # Update lua.rs authors = ["Arijit Basu "] edition = "2018" description = "A hackable, minimal, fast TUI file explorer" diff --git a/docs/en/src/upgrade-guide.md b/docs/en/src/upgrade-guide.md index 29c473c..cadb66e 100644 --- a/docs/en/src/upgrade-guide.md +++ b/docs/en/src/upgrade-guide.md @@ -46,7 +46,7 @@ compatibility. ### Instructions -#### [v0.13.7][2] -> [v0.14.3][3] +#### [v0.13.7][2] -> [v0.14.4][3] - macOS users need to place their config file (`init.lua`) in `$HOME/.config/xplr/` or `/etc/xplr/`. @@ -59,6 +59,8 @@ compatibility. path when called. So, there's no need to pipe the focus path explicitely. - Since version `v0.14.3`, general config `xplr.config.start_fifo` is available which can be set to a file path to start a fifo when xplr starts. +- Since version `v0.14.4`, `$XPLR_SESSION_PATH` can be used to dump session + related data. Like this project so far? **[Please consider contributing][5]**. @@ -218,7 +220,7 @@ Else do the following: [1]:#instructions [2]:https://github.com/sayanarijit/xplr/releases/tag/v0.13.7 -[3]:https://github.com/sayanarijit/xplr/releases/tag/v0.14.3 +[3]:https://github.com/sayanarijit/xplr/releases/tag/v0.14.4 [4]:https://github.com/sayanarijit/xplr/pull/229#issue-662426960 [5]:contribute.md [6]:https://github.com/sayanarijit/xplr/releases/tag/v0.12.1 @@ -256,4 +258,5 @@ Else do the following: [38]:https://github.com/sayanarijit/xplr/blob/055c1083d6/src/config.yml#L114 [39]:https://github.com/sayanarijit/xplr/blob/055c1083d6/src/config.yml#L180-L181 [40]:https://github.com/sayanarijit/xplr/releases/tag/v0.3.8 -[41]:https://github.com/sayanarijit/xplr/releases/tag/v0.3.0 \ No newline at end of file +[41]:https://github.com/sayanarijit/xplr/releases/tag/v0.3.0 +[42]:https://github.com/sayanarijit/xplr/releases/tag/v0.14.4 diff --git a/src/lua.rs b/src/lua.rs index 10e6a90..e48d5ff 100644 --- a/src/lua.rs +++ b/src/lua.rs @@ -133,23 +133,24 @@ mod test { assert!(check_version(VERSION, "foo path").is_ok()); // Current release if OK - assert!(check_version("0.14.3", "foo path").is_ok()); + assert!(check_version("0.14.4", "foo path").is_ok()); // Prev major release is ERR + // - Not yet // Prev minor release is ERR (Change when we get to v1) - assert!(check_version("0.13.3", "foo path").is_err()); + assert!(check_version("0.13.4", "foo path").is_err()); // Prev bugfix release is OK - assert!(check_version("0.14.2", "foo path").is_ok()); + assert!(check_version("0.14.3", "foo path").is_ok()); // Next major release is ERR - assert!(check_version("1.14.3", "foo path").is_err()); + assert!(check_version("1.14.4", "foo path").is_err()); // Next minor release is ERR - assert!(check_version("0.15.3", "foo path").is_err()); + assert!(check_version("0.15.4", "foo path").is_err()); // Next bugfix release is ERR (Change when we get to v1) - assert!(check_version("0.14.4", "foo path").is_err()); + assert!(check_version("0.14.5", "foo path").is_err()); } }