From 0a3cf7b5c1fde6fc6999a37bcecf35a3875710fc Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Fri, 9 Apr 2021 01:29:38 +0530 Subject: [PATCH] Update version --- Cargo.lock | 2 +- Cargo.toml | 2 +- default.nix | 6 +++--- src/app.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 157a586..3991e6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1164,7 +1164,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "xplr" -version = "0.3.8" +version = "0.3.9" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index d132dfe..4c88e2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xplr" -version = "0.3.8" # Update app.rs and default.nix +version = "0.3.9" # 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 5a6c16d..52b201d 100644 --- a/default.nix +++ b/default.nix @@ -1,12 +1,12 @@ -with import { }; +with import {}; # Run nix-build and update the src url, version and sha256 when new version rustPlatform.buildRustPackage rec { name = "xplr"; - version = "0.3.8"; + version = "0.3.9"; src = fetchTarball - ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.8.tar.gz"); + ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.9.tar.gz"); buildInputs = [ cargo ]; checkPhase = ""; cargoSha256 = "0000000000000000000000000000000000000000000000000000"; diff --git a/src/app.rs b/src/app.rs index bd7f363..ad03016 100644 --- a/src/app.rs +++ b/src/app.rs @@ -14,7 +14,7 @@ use std::io; use std::path::PathBuf; use std::time::Duration; -pub const VERSION: &str = "v0.3.8"; // Update Cargo.toml and default.nix +pub const VERSION: &str = "v0.3.9"; // 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";