aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-03-06 10:10:39 +0000
committerAkshay <[email protected]>2021-03-06 10:10:39 +0000
commit44c6faa0d1ed96ecc71865adf02db72fb96f28b1 (patch)
tree9eb4a661ddfce1eafa0c23a4108010e8842acd7a
parent0fd22fbd7be9efd03c82570a778dbb5cde20cad4 (diff)
bump to v0.2.7v0.2.7
- add GoalKinds - add Floating habits
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--dijo.14
-rw-r--r--flake.nix2
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2bd9535..30a194a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -261,7 +261,7 @@ dependencies = [
261 261
262[[package]] 262[[package]]
263name = "dijo" 263name = "dijo"
264version = "0.2.6" 264version = "0.2.7"
265dependencies = [ 265dependencies = [
266 "chrono", 266 "chrono",
267 "clap", 267 "clap",
diff --git a/Cargo.toml b/Cargo.toml
index c7a39c2..0be73cd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "dijo" 2name = "dijo"
3version = "0.2.6" 3version = "0.2.7"
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/dijo.1 b/dijo.1
index 7664416..2058810 100644
--- a/dijo.1
+++ b/dijo.1
@@ -1,4 +1,4 @@
1.TH DIJO 1 "January 26, 2021" dijo-0.2.3 1.TH DIJO 1 "January 26, 2021" dijo-0.2.7
2 2
3.SH NAME 3.SH NAME
4dijo \- digital journal 4dijo \- digital journal
@@ -80,7 +80,7 @@ Review your progress for previous months by pressing \fB[\fR on the keyboard, si
80 80
81.SH CUSTOMIZATION 81.SH CUSTOMIZATION
82.PP 82.PP
83\fBdijo (>= v0.2.3)\fR, can be configured via a configuration file. After its first run, \fBdijo\fR creates a configuration file. \fBdijo\fR must be restarted for changes in the configuration file to take effect. 83\fBdijo (>= v0.2.7)\fR, can be configured via a configuration file. After its first run, \fBdijo\fR creates a configuration file. \fBdijo\fR must be restarted for changes in the configuration file to take effect.
84.PP 84.PP
85This file is saved in different directories based on your operating system: 85This file is saved in different directories based on your operating system:
86 86
diff --git a/flake.nix b/flake.nix
index df2d5e7..d910720 100644
--- a/flake.nix
+++ b/flake.nix
@@ -32,7 +32,7 @@
32 in rec { 32 in rec {
33 packages.my-project = naersk-lib.buildPackage { 33 packages.my-project = naersk-lib.buildPackage {
34 pname = "dijo"; 34 pname = "dijo";
35 version = "0.2.6"; 35 version = "0.2.7";
36 root = ./.; 36 root = ./.;
37 }; 37 };
38 defaultPackage = packages.my-project; 38 defaultPackage = packages.my-project;