From 65ddb0ee4b6ffa387faf3f678547fa2767899a12 Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Tue, 6 Apr 2021 18:55:57 +0530 Subject: [PATCH] Release 0.3.2 --- Cargo.lock | 2 +- Cargo.toml | 2 +- default.nix | 4 ++-- src/app.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b79bb99..03e56ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1164,7 +1164,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "xplr" -version = "0.3.1" +version = "0.3.2" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 9713f66..7fac99c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] 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 8895b52..6d4f256 100644 --- a/default.nix +++ b/default.nix @@ -4,9 +4,9 @@ with import { }; 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="; diff --git a/src/app.rs b/src/app.rs index 02ef0a0..1f1f606 100644 --- a/src/app.rs +++ b/src/app.rs @@ -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";