From 233f6d44a59034f38a9debc559687613af86a8ec Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Fri, 9 Apr 2021 16:26:45 +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 6525c61..674007e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1362,7 +1362,7 @@ dependencies = [ [[package]] name = "xplr" -version = "0.3.12" +version = "0.3.13" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 618db3d..757d935 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xplr" -version = "0.3.12" # Update app.rs and default.nix +version = "0.3.13" # 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 1f3d129..7587c0b 100644 --- a/default.nix +++ b/default.nix @@ -4,9 +4,9 @@ with import {}; rustPlatform.buildRustPackage rec { name = "xplr"; - version = "0.3.12"; + version = "0.3.13"; src = fetchTarball - ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.12.tar.gz"); + ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.13.tar.gz"); buildInputs = [ cargo ]; checkPhase = ""; cargoSha256 = "0000000000000000000000000000000000000000000000000000"; diff --git a/src/app.rs b/src/app.rs index b30a86b..b9ac1fa 100644 --- a/src/app.rs +++ b/src/app.rs @@ -12,7 +12,7 @@ use std::fs; use std::io; use std::path::PathBuf; -pub const VERSION: &str = "v0.3.12"; // Update Cargo.toml and default.nix +pub const VERSION: &str = "v0.3.13"; // 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";