Update version

pull/35/head v0.3.9
Arijit Basu 3 years ago
parent 832016bb18
commit 0a3cf7b5c1
No known key found for this signature in database
GPG Key ID: 7D7BF809E7378863

2
Cargo.lock generated

@ -1164,7 +1164,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "xplr"
version = "0.3.8"
version = "0.3.9"
dependencies = [
"anyhow",
"chrono",

@ -1,6 +1,6 @@
[package]
name = "xplr"
version = "0.3.8" # Update app.rs and default.nix
version = "0.3.9" # 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"

@ -1,12 +1,12 @@
with import <nixpkgs> { };
with import <nixpkgs> {};
# Run nix-build and update the src url, version and sha256 when new version
rustPlatform.buildRustPackage rec {
name = "xplr";
version = "0.3.8";
version = "0.3.9";
src = fetchTarball
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.8.tar.gz");
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.9.tar.gz");
buildInputs = [ cargo ];
checkPhase = "";
cargoSha256 = "0000000000000000000000000000000000000000000000000000";

@ -14,7 +14,7 @@ use std::io;
use std::path::PathBuf;
use std::time::Duration;
pub const VERSION: &str = "v0.3.8"; // Update Cargo.toml and default.nix
pub const VERSION: &str = "v0.3.9"; // 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";

Loading…
Cancel
Save