aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-01-27 03:25:37 +0000
committerAkshay <[email protected]>2021-01-27 03:25:37 +0000
commitad5bf181a176e64c9f70a292cad870e6e8110f09 (patch)
treefb13a908a88c66f6dba994dbd8350fb88b498d7e
parent0a00129947bcc8dd70de01c0a4ef54832515fdc7 (diff)
bump to v0.2.5v0.2.5
- fixes installation from crates.io - bump cursive to v0.16
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--flake.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d297dd7..68a6631 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.4" 264version = "0.2.5"
265dependencies = [ 265dependencies = [
266 "chrono", 266 "chrono",
267 "clap", 267 "clap",
diff --git a/Cargo.toml b/Cargo.toml
index d74c940..5a0cd47 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "dijo" 2name = "dijo"
3version = "0.2.4" 3version = "0.2.5"
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/flake.nix b/flake.nix
index 0232c1c..db94656 100644
--- a/flake.nix
+++ b/flake.nix
@@ -27,7 +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 version = "0.2.5";
31 root = ./.; 31 root = ./.;
32 }; 32 };
33 defaultPackage = packages.my-project; 33 defaultPackage = packages.my-project;