add comment to remind to update the version in the default.nix file

pull/16/head
Quentin Guilloteau 3 years ago committed by Arijit Basu
parent 42ca66c0fd
commit a9309a52c0

@ -1,6 +1,6 @@
[package]
name = "xplr"
version = "0.3.1" # Update app.rs
version = "0.3.1" # 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,5 +1,7 @@
with import <nixpkgs> { };
# Update the src url, version and sha256 when new version
rustPlatform.buildRustPackage rec {
name = "xplr";
version = "0.3.1";

@ -12,7 +12,7 @@ use std::fs;
use std::io;
use std::path::PathBuf;
pub const VERSION: &str = "v0.3.1"; // Update Cargo.toml
pub const VERSION: &str = "v0.3.1"; // Update Cargo.toml and default.nix
pub const TEMPLATE_TABLE_ROW: &str = "TEMPLATE_TABLE_ROW";

Loading…
Cancel
Save