diff --git a/.gitignore b/.gitignore index ea8c4bf..f2c8a07 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ /target +/flamegraph.svg +/perf.data +/perf.data.old diff --git a/Cargo.lock b/Cargo.lock index 1b0f302..6525c61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1362,7 +1362,7 @@ dependencies = [ [[package]] name = "xplr" -version = "0.3.10" +version = "0.3.12" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 0dcafd9..618db3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xplr" -version = "0.3.10" # Update app.rs and default.nix +version = "0.3.12" # Update app.rs and default.nix authors = ["Arijit Basu "] edition = "2018" description = "A hackable, minimal, fast TUI file explorer, stealing ideas from nnn and fzf" diff --git a/default.nix b/default.nix index 7c7a279..1f3d129 100644 --- a/default.nix +++ b/default.nix @@ -4,9 +4,9 @@ with import {}; rustPlatform.buildRustPackage rec { name = "xplr"; - version = "0.3.10"; + version = "0.3.12"; src = fetchTarball - ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.10.tar.gz"); + ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.12.tar.gz"); buildInputs = [ cargo ]; checkPhase = ""; cargoSha256 = "0000000000000000000000000000000000000000000000000000"; diff --git a/src/app.rs b/src/app.rs index ab4a2dd..f9834eb 100644 --- a/src/app.rs +++ b/src/app.rs @@ -13,7 +13,7 @@ use std::fs; use std::io; use std::path::PathBuf; -pub const VERSION: &str = "v0.3.10"; // Update Cargo.toml and default.nix +pub const VERSION: &str = "v0.3.12"; // Update Cargo.toml and default.nix pub const TEMPLATE_TABLE_ROW: &str = "TEMPLATE_TABLE_ROW"; pub const UNSUPPORTED_STR: &str = "???"; pub const UPGRADE_GUIDE_LINK: &str = "https://github.com/sayanarijit/xplr/wiki/Upgrade-Guide";