Skip to content

Commit

Permalink
Fix failed build and update version
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Apr 9, 2021
1 parent b5986c5 commit b9e9601
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
/target
/flamegraph.svg
/perf.data
/perf.data.old
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.10" # Update app.rs and default.nix
version = "0.3.12" # 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,9 +4,9 @@ with import <nixpkgs> {};

rustPlatform.buildRustPackage rec {
name = "xplr";
version = "0.3.10";
version = "0.3.12";
src = fetchTarball
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.10.tar.gz");
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.12.tar.gz");
buildInputs = [ cargo ];
checkPhase = "";
cargoSha256 = "0000000000000000000000000000000000000000000000000000";
Expand Down
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::fs;
use std::io;
use std::path::PathBuf;

pub const VERSION: &str = "v0.3.10"; // Update Cargo.toml and default.nix
pub const VERSION: &str = "v0.3.12"; // 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 b9e9601

Please sign in to comment.