Skip to content

Commit 0d79213

Browse files
committed
Prepare for v1.5
1 parent 88b70f8 commit 0d79213

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
bcal 1.5
2+
2017-04-10
3+
4+
Modifications
5+
- Support binary and octal in CHS2LBA and LBA2CHS conversions
6+
7+
-------------------------------------------------------------------------------
8+
19
bcal 1.4
210
2016-10-17
311

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CC = gcc
2-
CFLAGS = -Wall -Wextra -Werror -O3 -m64
2+
CFLAGS = -O3 -m64 -Wall -Wextra -Werror
33
LDLIBS = -lquadmath
44

55
PREFIX ?= /usr/local

bcal.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "BCAL" "1" "Oct 2016" "Version 1.4" "User Commands"
1+
.TH "BCAL" "1" "Apr 2017" "Version 1.5" "User Commands"
22
.SH NAME
33
bcal \- Perform storage conversions and calculations.
44
.SH SYNOPSIS

bcal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ typedef __uint64_t maxuint_t;
4242
typedef double maxfloat_t;
4343
#endif
4444

45-
char *VERSION = "1.4";
45+
char *VERSION = "1.5";
4646
char *units[] = {"b", "kib", "mib", "gib", "tib", "kb", "mb", "gb", "tb"};
4747

4848
char uint_buf[UINT_BUF_LEN];

0 commit comments

Comments
 (0)