Fix release

pull/134/head v0.8.3
Arijit Basu 3 years ago
parent 92545f6387
commit 3e812045e6
No known key found for this signature in database
GPG Key ID: 7D7BF809E7378863

2
Cargo.lock generated

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

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

@ -1236,6 +1236,8 @@ impl Config {
pub fn is_compatible(&self) -> Result<bool> {
let result = match self.parsed_version()? {
(0, 8, 3) => true,
(0, 8, 2) => true,
(0, 8, 1) => true,
(0, 8, 0) => true,
(_, _, _) => false,
@ -1246,6 +1248,8 @@ impl Config {
pub fn upgrade_notification(&self) -> Result<Option<&str>> {
let result = match self.parsed_version()? {
(0, 8, 3) => None,
(0, 8, 2) => None,
(0, 8, 1) => None,
(0, 8, 0) => Some("App version updated. Fixed breaking UI after rename"),
(_, _, _) => None,

@ -1,4 +1,4 @@
version: v0.8.1
version: v0.8.3
layouts:
custom: {}
builtin:

Loading…
Cancel
Save