Skip to content

Commit

Permalink
Prepare for v1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Apr 10, 2017
1 parent 88b70f8 commit 0d79213
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
bcal 1.5
2017-04-10

Modifications
- Support binary and octal in CHS2LBA and LBA2CHS conversions

-------------------------------------------------------------------------------

bcal 1.4
2016-10-17

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CC = gcc
CFLAGS = -Wall -Wextra -Werror -O3 -m64
CFLAGS = -O3 -m64 -Wall -Wextra -Werror
LDLIBS = -lquadmath

PREFIX ?= /usr/local
Expand Down
2 changes: 1 addition & 1 deletion bcal.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "BCAL" "1" "Oct 2016" "Version 1.4" "User Commands"
.TH "BCAL" "1" "Apr 2017" "Version 1.5" "User Commands"
.SH NAME
bcal \- Perform storage conversions and calculations.
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion bcal.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ typedef __uint64_t maxuint_t;
typedef double maxfloat_t;
#endif

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

char uint_buf[UINT_BUF_LEN];
Expand Down

0 comments on commit 0d79213

Please sign in to comment.