Skip to content

Commit a1bb800

Browse files
committed
Prepare for release v1.8
1 parent 97f5423 commit a1bb800

5 files changed

Lines changed: 26 additions & 13 deletions

File tree

CHANGELOG

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
1-
bcal 1.7
2-
2016-10-10
1+
bcal v1.8
2+
2018-03-12
3+
4+
What's in?
5+
- Dependency on libquadmath dropped (`bcal` will be on Homebrew soon!)
6+
- Option `-b` to show byte size of basic data types
7+
- Limit unit conversions to `long double` (`__float128_t` is not portable)
8+
- Fix test case failures on OS X
9+
- Generate packages for many more distro versions
10+
- Automated build and test for gcc, clang (Linux and OS X) and musl-gcc (Linux)
11+
12+
-------------------------------------------------------------------------------
13+
14+
bcal v1.7
15+
2017-10-07
316

417
What's in?
518
- PackageCore integration
619
- Automated testing in Travis CI
720

821
-------------------------------------------------------------------------------
922

10-
bcal 1.6
23+
bcal v1.6
1124
2017-06-30
1225

1326
What's in?
@@ -19,15 +32,15 @@ What's in?
1932

2033
-------------------------------------------------------------------------------
2134

22-
bcal 1.5
35+
bcal v1.5
2336
2017-04-10
2437

2538
Modifications
2639
- Support binary and octal in CHS2LBA and LBA2CHS conversions
2740

2841
-------------------------------------------------------------------------------
2942

30-
bcal 1.4
43+
bcal v1.4
3144
2016-10-17
3245

3346
Modifications
@@ -45,7 +58,7 @@ Modifications
4558
-------------------------------------------------------------------------------
4659

4760
calb v1.0
48-
2016-09-28
61+
2016-09-29
4962

5063
Initial features
5164
- convert to IEC/SI standard data storage units

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,4 @@ Due to the nature of the project, it's extremely important to test existing func
202202

203203
### Copyright
204204

205-
Copyright © 2016-2017 [Arun Prakash Jana](https://github.com/jarun)
205+
Copyright © 2016-2018 [Arun Prakash Jana](https://github.com/jarun)

bcal.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "BCAL" "1" "10 Oct 2017" "Version 1.7" "User Commands"
1+
.TH "BCAL" "1" "12 Mar 2018" "Version 1.8" "User Commands"
22
.SH NAME
33
bcal \- Storage conversion and expression calculator.
44
.SH SYNOPSIS
@@ -154,7 +154,7 @@ Arun Prakash Jana <engineerarun@gmail.com>
154154
.SH REPORTING BUGS
155155
.I https://github.com/jarun/bcal/issues
156156
.SH LICENSE
157-
Copyright \(co 2016-2017 Arun Prakash Jana <engineerarun@gmail.com>
157+
Copyright \(co 2016-2018 Arun Prakash Jana <engineerarun@gmail.com>
158158
.PP
159159
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
160160
.br

packagecore.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ packages:
1111
builddeps:
1212
- make
1313
- gcc
14-
centos7.1
14+
centos7.1:
1515
builddeps:
1616
- make
1717
- gcc
18-
centos7.2
18+
centos7.2:
1919
builddeps:
2020
- make
2121
- gcc

src/bcal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ typedef struct {
5555
ulong s;
5656
} t_chs;
5757

58-
static char *VERSION = "1.7";
58+
static char *VERSION = "1.8";
5959
static char *units[] = {"b", "kib", "mib", "gib", "tib", "kb", "mb", "gb", "tb"};
6060

6161
static char *FAILED = "1";
@@ -945,7 +945,7 @@ optional arguments:\n\
945945
-d enable debug information and logs\n\
946946
-h show this help and exit\n\n\
947947
Version %s\n\
948-
Copyright © 2016-2017 Arun Prakash Jana <engineerarun@gmail.com>\n\
948+
Copyright © 2016-2018 Arun Prakash Jana <engineerarun@gmail.com>\n\
949949
License: GPLv3\n\
950950
Webpage: https://github.com/jarun/bcal\n", VERSION);
951951
}

0 commit comments

Comments
 (0)