From c06a3cb51ef16b41775febd86c7f0a9e0b465064 Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Fri, 9 Apr 2021 04:19:26 +0530 Subject: [PATCH] Update version --- Cargo.lock | 2 +- Cargo.toml | 2 +- default.nix | 4 ++-- src/app.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c3325f6..1b0f302 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1362,7 +1362,7 @@ dependencies = [ [[package]] name = "xplr" -version = "0.3.9" +version = "0.3.10" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 37e402f..0dcafd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xplr" -version = "0.3.9" # Update app.rs and default.nix +version = "0.3.10" # 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 52b201d..7c7a279 100644 --- a/default.nix +++ b/default.nix @@ -4,9 +4,9 @@ with import {}; rustPlatform.buildRustPackage rec { name = "xplr"; - version = "0.3.9"; + version = "0.3.10"; src = fetchTarball - ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.9.tar.gz"); + ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.10.tar.gz"); buildInputs = [ cargo ]; checkPhase = ""; cargoSha256 = "0000000000000000000000000000000000000000000000000000"; diff --git a/src/app.rs b/src/app.rs index 249a4ce..0ace164 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.9"; // Update Cargo.toml and default.nix +pub const VERSION: &str = "v0.3.10"; // 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";