Fix version

pull/172/head v0.10.0-beta.3
Arijit Basu 3 years ago committed by Arijit Basu
parent eb06342523
commit 0a2f2aeda8

2
Cargo.lock generated

@ -1099,7 +1099,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "xplr"
version = "0.10.0-beta.1"
version = "0.10.0-beta.3"
dependencies = [
"anyhow",
"chrono",

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

@ -1281,6 +1281,7 @@ impl Config {
pub fn is_compatible(&self) -> Result<bool> {
let result = match self.parsed_version()? {
(0, 10, 0, Some(3)) => true,
(0, 10, 0, Some(2)) => true,
(0, 10, 0, Some(1)) => true,
(_, _, _, _) => false,

@ -1,4 +1,4 @@
version: v0.10.0-beta.2
version: v0.10.0-beta.3
layouts:
custom: {}
builtin:

@ -1,4 +1,4 @@
version = "v0.10.0-beta.2"
version = "v0.10.0-beta.3"
xplr.fn.builtin.fmt_general_table_row_cols_0 = function(m)
local r = ""

Loading…
Cancel
Save