Update version

pull/104/head v0.5.7
Arijit Basu 3 years ago committed by Arijit Basu
parent d0c5801474
commit eca35c73a2

2
Cargo.lock generated

@ -1630,7 +1630,7 @@ dependencies = [
[[package]]
name = "xplr"
version = "0.5.6"
version = "0.5.7"
dependencies = [
"anyhow",
"chrono",

@ -1,6 +1,6 @@
[package]
name = "xplr"
version = "0.5.6" # Update config.yml, config.rs and default.nix
version = "0.5.7" # Update config.yml, config.rs and default.nix
authors = ["Arijit Basu <sayanarijit@gmail.com>"]
edition = "2018"
description = "A hackable, minimal, fast TUI file explorer"

@ -665,6 +665,7 @@ impl Config {
pub fn is_compatible(&self) -> Result<bool> {
let result = match self.parsed_version()? {
(0, 5, 7) => true,
(0, 5, 6) => true,
(0, 5, 5) => true,
(0, 5, 4) => true,
@ -680,7 +681,8 @@ impl Config {
pub fn upgrade_notification(&self) -> Result<Option<&str>> {
let result = match self.parsed_version()? {
(0, 5, 6) => None,
(0, 5, 7) => None,
(0, 5, 6) => Some("App version updated. Fixed piping and in-built terminal support"),
(0, 5, 5) => Some("App version updated. Significant reduction in CPU usage"),
(0, 5, 4) => Some("App version updated. Significant reduction in CPU usage"),
(0, 5, 3) => Some("App version updated. Fixed exit on permission denied"),

@ -1,4 +1,4 @@
version: v0.5.6
version: v0.5.7
general:
show_hidden: false
read_only: false

Loading…
Cancel
Save