summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2017-06-30 05:52:24 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2017-06-30 05:52:24 +0530
commit181625c531e8bd881770cccdcb2b59d72dc73c6b (patch)
treeb3544ee7e72c846cc9334550ae5cda6d2c7ddc44
parent87b64ebd881bfb16d117f611853e72f65d42c073 (diff)
Prepare for release v1.6v1.6
-rw-r--r--CHANGELOG12
-rw-r--r--bcal.12
-rw-r--r--src/bcal.c2
3 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 5c50c0c..902827e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,15 @@
+bcal 1.6
+2017-06-30
+
+What's in?
+- Evaluate storage arithmetic expressions involving +, -, *, /
+- A minimal mode (option `-m`) to show result in bytes
+- Assume byte if unit is omitted for a conversion
+- A Python3 test framework with multiple test cases
+- Several fixes and additional sanity checks on input
+
+-------------------------------------------------------------------------------
+
bcal 1.5
2017-04-10
diff --git a/bcal.1 b/bcal.1
index b8497d0..ca6970d 100644
--- a/bcal.1
+++ b/bcal.1
@@ -1,4 +1,4 @@
-.TH "BCAL" "1" "Apr 2017" "Version 1.5" "User Commands"
+.TH "BCAL" "1" "Jun 2017" "Version 1.6" "User Commands"
.SH NAME
bcal \- Perform storage conversions and calculations.
.SH SYNOPSIS
diff --git a/src/bcal.c b/src/bcal.c
index 8c304f9..a06518b 100644
--- a/src/bcal.c
+++ b/src/bcal.c
@@ -55,7 +55,7 @@ typedef struct {
ulong s;
} t_chs;
-static char *VERSION = "1.5";
+static char *VERSION = "1.6";
static char *units[] = {"b", "kib", "mib", "gib", "tib", "kb", "mb", "gb", "tb"};
static char uint_buf[UINT_BUF_LEN];