Skip to content

Commit

Permalink
Fix failed build and re-publish
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Apr 6, 2021
1 parent 2bd2b74 commit 23b51cf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <sayanarijit@gmail.com>"]
edition = "2018"
description = "A hackable, minimal, fast TUI file explorer, stealing ideas from nnn and fzf"
Expand Down
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ with import <nixpkgs> { };

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";
}
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 23b51cf

Please sign in to comment.