aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-01-26 15:40:16 +0000
committerAkshay <[email protected]>2021-01-26 15:40:16 +0000
commit3570b4bb5de61abff6bdc8ba6bbfd806a1ebce0d (patch)
treea14b0978b77197b144a40a50a275db80dc23457f
parent2cb819bdcbb98a64ef7cbededc0de8168312c7ea (diff)
bump to v0.2.4v0.2.4
- new alias 'wq' for write and quit - prevent ctrl-c from losing data - add man page
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--LICENSE2
-rw-r--r--flake.nix1
4 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3b64068..9285a3c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -316,7 +316,7 @@ dependencies = [
316 316
317[[package]] 317[[package]]
318name = "dijo" 318name = "dijo"
319version = "0.2.3" 319version = "0.2.4"
320dependencies = [ 320dependencies = [
321 "chrono", 321 "chrono",
322 "clap", 322 "clap",
diff --git a/Cargo.toml b/Cargo.toml
index ba98e65..aca1963 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "dijo" 2name = "dijo"
3version = "0.2.3" 3version = "0.2.4"
4authors = ["Akshay <[email protected]>"] 4authors = ["Akshay <[email protected]>"]
5edition = "2018" 5edition = "2018"
6description = "Scriptable, curses-based, digital habit tracker" 6description = "Scriptable, curses-based, digital habit tracker"
diff --git a/LICENSE b/LICENSE
index b7f6959..2334bf6 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
1Copyright 2018 Akshay Oppiliappan ([email protected]) 1Copyright 2021 Akshay Oppiliappan ([email protected])
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of 3Permission is hereby granted, free of charge, to any person obtaining a copy of
4this software and associated documentation files (the "Software"), to deal in 4this software and associated documentation files (the "Software"), to deal in
diff --git a/flake.nix b/flake.nix
index a046490..0232c1c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -27,6 +27,7 @@
27 in rec { 27 in rec {
28 packages.my-project = naersk-lib.buildPackage { 28 packages.my-project = naersk-lib.buildPackage {
29 pname = "dijo"; 29 pname = "dijo";
30 version = "0.2.4";
30 root = ./.; 31 root = ./.;
31 }; 32 };
32 defaultPackage = packages.my-project; 33 defaultPackage = packages.my-project;