summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAkshay <nerdy@peppe.rs>2021-01-26 21:10:16 +0530
committerAkshay <nerdy@peppe.rs>2021-01-26 21:10:16 +0530
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 = [
[[package]]
name = "dijo"
-version = "0.2.3"
+version = "0.2.4"
dependencies = [
"chrono",
"clap",
diff --git a/Cargo.toml b/Cargo.toml
index ba98e65..aca1963 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dijo"
-version = "0.2.3"
+version = "0.2.4"
authors = ["Akshay <nerdy@peppe.rs>"]
edition = "2018"
description = "Scriptable, curses-based, digital habit tracker"
diff --git a/LICENSE b/LICENSE
index b7f6959..2334bf6 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2018 Akshay Oppiliappan (nerdy@peppe.rs)
+Copyright 2021 Akshay Oppiliappan (nerdy@peppe.rs)
Permission is hereby granted, free of charge, to any person obtaining a copy of
this 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 @@
in rec {
packages.my-project = naersk-lib.buildPackage {
pname = "dijo";
+ version = "0.2.4";
root = ./.;
};
defaultPackage = packages.my-project;