Update version

This commit is contained in:
Arijit Basu 2021-04-23 00:17:43 +05:30
parent 1a08318593
commit 36c2c9cc2b
No known key found for this signature in database
GPG Key ID: 7D7BF809E7378863
4 changed files with 5 additions and 4 deletions

2
Cargo.lock generated
View File

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

View File

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

View File

@ -678,7 +678,8 @@ impl Config {
pub fn upgrade_notification(&self) -> Result<Option<&str>> {
let result = match self.parsed_version()? {
(0, 5, 4) => None,
(0, 5, 5) => None,
(0, 5, 4) => Some("App version updated. Significant reduction in CPU usage"),
(0, 5, 3) => Some("App version updated. Fixed exit on permission denied"),
(0, 5, 2) => Some("App version updated. Now pwd is synced with your terminal session"),
(0, 5, 1) => Some("App version updated. Now follow symlinks using 'gf'"),

View File

@ -1,4 +1,4 @@
version: v0.5.4
version: v0.5.5
general:
show_hidden: false
read_only: false