mirror of
https://github.com/sayanarijit/xplr
synced 2024-11-04 18:00:14 +00:00
Update version
This commit is contained in:
parent
2af1b4c70a
commit
233f6d44a5
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1362,7 +1362,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "xplr"
|
||||
version = "0.3.12"
|
||||
version = "0.3.13"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"chrono",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "xplr"
|
||||
version = "0.3.12" # Update app.rs and default.nix
|
||||
version = "0.3.13" # 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.12";
|
||||
version = "0.3.13";
|
||||
src = fetchTarball
|
||||
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.12.tar.gz");
|
||||
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.13.tar.gz");
|
||||
buildInputs = [ cargo ];
|
||||
checkPhase = "";
|
||||
cargoSha256 = "0000000000000000000000000000000000000000000000000000";
|
||||
|
@ -12,7 +12,7 @@ use std::fs;
|
||||
use std::io;
|
||||
use std::path::PathBuf;
|
||||
|
||||
pub const VERSION: &str = "v0.3.12"; // Update Cargo.toml and default.nix
|
||||
pub const VERSION: &str = "v0.3.13"; // 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…
Reference in New Issue
Block a user