summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2018-03-12 21:25:16 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2018-03-12 21:34:00 +0530
commita1bb8004abac0e7eef6ea7041b72a67593437d42 (patch)
tree12aec2bbaef60d93dadb814151beadd60d0a348d
parent97f5423910226add5c1541912102bbcc2befb8a7 (diff)
Prepare for release v1.8v1.8
-rw-r--r--CHANGELOG25
-rw-r--r--README.md2
-rw-r--r--bcal.14
-rw-r--r--packagecore.yaml4
-rw-r--r--src/bcal.c4
5 files changed, 26 insertions, 13 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2484633..06166af 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,18 @@
-bcal 1.7
-2016-10-10
+bcal v1.8
+2018-03-12
+
+What's in?
+- Dependency on libquadmath dropped (`bcal` will be on Homebrew soon!)
+- Option `-b` to show byte size of basic data types
+- Limit unit conversions to `long double` (`__float128_t` is not portable)
+- Fix test case failures on OS X
+- Generate packages for many more distro versions
+- Automated build and test for gcc, clang (Linux and OS X) and musl-gcc (Linux)
+
+-------------------------------------------------------------------------------
+
+bcal v1.7
+2017-10-07
What's in?
- PackageCore integration
@@ -7,7 +20,7 @@ What's in?
-------------------------------------------------------------------------------
-bcal 1.6
+bcal v1.6
2017-06-30
What's in?
@@ -19,7 +32,7 @@ What's in?
-------------------------------------------------------------------------------
-bcal 1.5
+bcal v1.5
2017-04-10
Modifications
@@ -27,7 +40,7 @@ Modifications
-------------------------------------------------------------------------------
-bcal 1.4
+bcal v1.4
2016-10-17
Modifications
@@ -45,7 +58,7 @@ Modifications
-------------------------------------------------------------------------------
calb v1.0
-2016-09-28
+2016-09-29
Initial features
- convert to IEC/SI standard data storage units
diff --git a/README.md b/README.md
index 362eee5..cf8dfa4 100644
--- a/README.md
+++ b/README.md
@@ -202,4 +202,4 @@ Due to the nature of the project, it's extremely important to test existing func
### Copyright
-Copyright © 2016-2017 [Arun Prakash Jana](https://github.com/jarun)
+Copyright © 2016-2018 [Arun Prakash Jana](https://github.com/jarun)
diff --git a/bcal.1 b/bcal.1
index 0d93766..809ccc8 100644
--- a/bcal.1
+++ b/bcal.1
@@ -1,4 +1,4 @@
-.TH "BCAL" "1" "10 Oct 2017" "Version 1.7" "User Commands"
+.TH "BCAL" "1" "12 Mar 2018" "Version 1.8" "User Commands"
.SH NAME
bcal \- Storage conversion and expression calculator.
.SH SYNOPSIS
@@ -154,7 +154,7 @@ Arun Prakash Jana <engineerarun@gmail.com>
.SH REPORTING BUGS
.I https://github.com/jarun/bcal/issues
.SH LICENSE
-Copyright \(co 2016-2017 Arun Prakash Jana <engineerarun@gmail.com>
+Copyright \(co 2016-2018 Arun Prakash Jana <engineerarun@gmail.com>
.PP
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
.br
diff --git a/packagecore.yaml b/packagecore.yaml
index fd1a09c..ed6cdbf 100644
--- a/packagecore.yaml
+++ b/packagecore.yaml
@@ -11,11 +11,11 @@ packages:
builddeps:
- make
- gcc
- centos7.1
+ centos7.1:
builddeps:
- make
- gcc
- centos7.2
+ centos7.2:
builddeps:
- make
- gcc
diff --git a/src/bcal.c b/src/bcal.c
index 3aefdb3..5e59fc2 100644
--- a/src/bcal.c
+++ b/src/bcal.c
@@ -55,7 +55,7 @@ typedef struct {
ulong s;
} t_chs;
-static char *VERSION = "1.7";
+static char *VERSION = "1.8";
static char *units[] = {"b", "kib", "mib", "gib", "tib", "kb", "mb", "gb", "tb"};
static char *FAILED = "1";
@@ -945,7 +945,7 @@ optional arguments:\n\
-d enable debug information and logs\n\
-h show this help and exit\n\n\
Version %s\n\
-Copyright © 2016-2017 Arun Prakash Jana <engineerarun@gmail.com>\n\
+Copyright © 2016-2018 Arun Prakash Jana <engineerarun@gmail.com>\n\
License: GPLv3\n\
Webpage: https://github.com/jarun/bcal\n", VERSION);
}