Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Apr 7, 2021
1 parent 57494f8 commit 91a319f
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.6" # Update app.rs and default.nix
version = "0.3.7" # 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.6";
version = "0.3.7";
src = fetchTarball
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.3.tar.gz");
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.7.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::io;
use std::path::PathBuf;
use std::time::Duration;

pub const VERSION: &str = "v0.3.6"; // Update Cargo.toml and default.nix
pub const VERSION: &str = "v0.3.7"; // 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 91a319f

Please sign in to comment.