Update version

pull/36/head v0.3.10
Arijit Basu 3 years ago
parent 6d0ea06d7b
commit c06a3cb51e
No known key found for this signature in database
GPG Key ID: 7D7BF809E7378863

2
Cargo.lock generated

@ -1362,7 +1362,7 @@ dependencies = [
[[package]]
name = "xplr"
version = "0.3.9"
version = "0.3.10"
dependencies = [
"anyhow",
"chrono",

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

@ -4,9 +4,9 @@ with import <nixpkgs> {};
rustPlatform.buildRustPackage rec {
name = "xplr";
version = "0.3.9";
version = "0.3.10";
src = fetchTarball
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.9.tar.gz");
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.10.tar.gz");
buildInputs = [ cargo ];
checkPhase = "";
cargoSha256 = "0000000000000000000000000000000000000000000000000000";

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