Skip to content

Commit

Permalink
Release 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Apr 6, 2021
1 parent 53fd92b commit 65ddb0e
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.1" # Update app.rs and default.nix
version = "0.3.2" # Update app.rs and default.nix
authors = ["Arijit Basu <[email protected]>"]
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.1";
version = "0.3.2";
src = fetchTarball
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.1.tar.gz");
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.2.tar.gz");
buildInputs = [ cargo ];
checkPhase = "";
cargoSha256 = "sha256-IyaYkHXmqXziXNK6uYU+XNNWA8a8S8cuMxkopps/9kk=";
Expand Down
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use std::fs;
use std::io;
use std::path::PathBuf;

pub const VERSION: &str = "v0.3.1"; // Update Cargo.toml and default.nix
pub const VERSION: &str = "v0.3.2"; // Update Cargo.toml and default.nix

pub const TEMPLATE_TABLE_ROW: &str = "TEMPLATE_TABLE_ROW";

Expand Down

0 comments on commit 65ddb0e

Please sign in to comment.