From 23b51cf8fe2d8fc2f3abb159fc6638ba56e4885c Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Wed, 7 Apr 2021 03:05:25 +0530 Subject: [PATCH] Fix failed build and re-publish --- 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 83afe1b..d5e0372 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1164,7 +1164,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "xplr" -version = "0.3.4" +version = "0.3.6" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 7ce478f..5e61ec8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xplr" -version = "0.3.4" # Update app.rs and default.nix +version = "0.3.6" # 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 4075f7c..e387e56 100644 --- a/default.nix +++ b/default.nix @@ -4,10 +4,10 @@ with import { }; rustPlatform.buildRustPackage rec { name = "xplr"; - version = "0.3.3"; + version = "0.3.6"; src = fetchTarball ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.3.tar.gz"); buildInputs = [ cargo ]; checkPhase = ""; - cargoSha256 = "1wxb0ian7b9abi00i9v2wxkqiw71c3zcxrv5j89pqj5k23wzv04i"; + cargoSha256 = "0000000000000000000000000000000000000000000000000000"; } diff --git a/src/app.rs b/src/app.rs index 48104a9..791aedd 100644 --- a/src/app.rs +++ b/src/app.rs @@ -13,7 +13,7 @@ use std::io; use std::path::PathBuf; use std::time::Duration; -pub const VERSION: &str = "v0.3.4"; // Update Cargo.toml and default.nix +pub const VERSION: &str = "v0.3.6"; // 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";