Skip to content

Commit

Permalink
Prepare for release v1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Jun 30, 2017
1 parent 87b64eb commit 181625c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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

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" "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
Expand Down
2 changes: 1 addition & 1 deletion src/bcal.c
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

2 comments on commit 181625c

@jarun
Copy link
Owner Author

@jarun jarun commented on 181625c Jun 30, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shaggytwodope @szlin bcal v1.6 is released.

@jarun
Copy link
Owner Author

@jarun jarun commented on 181625c Jun 30, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SampuZ your feature to evaluate storage arithmetic expressions is in. Thanks a ton for the contribution!

Please sign in to comment.