From e34755b11bad70dd2b806ae960996d4a1e8a45b1 Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Wed, 7 Apr 2021 01:55:22 +0530 Subject: [PATCH] Update version Also fix nix hash --- Cargo.toml | 2 +- default.nix | 3 +-- src/app.rs | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7fac99c..b24da34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xplr" -version = "0.3.2" # Update app.rs and default.nix +version = "0.3.3" # 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 97feb7b..802f71b 100644 --- a/default.nix +++ b/default.nix @@ -9,6 +9,5 @@ rustPlatform.buildRustPackage rec { ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.2.tar.gz"); buildInputs = [ cargo ]; checkPhase = ""; - cargoSha256 = "0000000000000000000000000000000000000000000000000000"; + cargoSha256 = "1wxb0ian7b9abi00i9v2wxkqiw71c3zcxrv5j89pqj5k23wzv04i"; } - diff --git a/src/app.rs b/src/app.rs index c70ddae..55f7787 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.2"; // Update Cargo.toml and default.nix +pub const VERSION: &str = "v0.3.3"; // 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 = "github.com/sayanarijit/xplr/wiki/Upgrade-Guide";