Skip to content

Commit

Permalink
Prepare for release v2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Dec 11, 2018
1 parent efc8048 commit 3785a66
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
bcal v2.1
2018-12-11

What's in?
- Support for C bitwise operators (`|`, `^`, `&`)
- Support floating point in unit conversion
- Support hex in expressions
- Persistent readline history
- Static-analysis (clang-tidy and coverity) integration

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

bcal v2.0
2018-10-02

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,4 +223,4 @@ Due to the nature of the project, it's extremely important to test existing func

### Copyright

Copyright © 2016-2018 [Arun Prakash Jana](https://github.com/jarun)
Copyright © 2016 [Arun Prakash Jana](https://github.com/jarun)
4 changes: 2 additions & 2 deletions bcal.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "BCAL" "1" "02 Oct 2018" "Version 2.0" "User Commands"
.TH "BCAL" "1" "11 Dec 2018" "Version 2.1" "User Commands"
.SH NAME
bcal \- Storage expression calculator.
.SH SYNOPSIS
Expand Down Expand Up @@ -185,7 +185,7 @@ Arun Prakash Jana <[email protected]>
.SH REPORTING BUGS
.I https://github.com/jarun/bcal/issues
.SH LICENSE
Copyright \(co 2016-2018 Arun Prakash Jana <[email protected]>
Copyright \(co 2016 Arun Prakash Jana <[email protected]>
.PP
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
.br
Expand Down
8 changes: 8 additions & 0 deletions packagecore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ packages:
- gcc
deps:
- readline
container: "base/archlinux"
centos7.1:
builddeps:
- make
Expand Down Expand Up @@ -76,6 +77,13 @@ packages:
- readline-devel
deps:
- readline
fedora29:
builddeps:
- make
- gcc
- readline-devel
deps:
- readline
opensuse42.1:
builddeps:
- make
Expand Down
4 changes: 2 additions & 2 deletions src/bcal.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ typedef struct {
uchar loglvl : 2;
} settings;

static char *VERSION = "2.0";
static char *VERSION = "2.1";
static char *units[] = {"b", "kib", "mib", "gib", "tib", "kb", "mb", "gb", "tb"};
static char *logarr[] = {"ERROR", "WARNING", "INFO", "DEBUG"};

Expand Down Expand Up @@ -1155,7 +1155,7 @@ optional arguments:\n\
prompt_help();

printf("\nVersion %s\n\
Copyright © 2016-2018 Arun Prakash Jana <[email protected]>\n\
Copyright © 2016 Arun Prakash Jana <[email protected]>\n\
License: GPLv3\n\
Webpage: https://github.com/jarun/bcal\n", VERSION);
}
Expand Down

10 comments on commit 3785a66

@jarun
Copy link
Owner Author

@jarun jarun commented on 3785a66 Dec 12, 2018

Choose a reason for hiding this comment

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

@eclipseo, @maxice8, @pabloariasal, @szlin bcal v2.1 is released!

@maxice8
Copy link

Choose a reason for hiding this comment

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

done

@eclipseo
Copy link

Choose a reason for hiding this comment

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

It's built on Fedora.

@jarun
Copy link
Owner Author

@jarun jarun commented on 3785a66 Dec 12, 2018

Choose a reason for hiding this comment

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

Thanks @maxice8 and @eclipseo!

@szlin
Copy link
Collaborator

@szlin szlin commented on 3785a66 Dec 13, 2018

Choose a reason for hiding this comment

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

@jarun The new version of bcal has been uploaded.

@jarun
Copy link
Owner Author

@jarun jarun commented on 3785a66 Dec 13, 2018

Choose a reason for hiding this comment

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

Thanks Lin!

@dilawar
Copy link

Choose a reason for hiding this comment

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

Submitted to openSUSE.

@jarun
Copy link
Owner Author

@jarun jarun commented on 3785a66 Apr 13, 2019

Choose a reason for hiding this comment

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

Thank you!

@dilawar
Copy link

Choose a reason for hiding this comment

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

bcal is now mainline. It would be in main open SUSE repository for next release. I gather that bcal does not compile on 32bit architecture.

@jarun
Copy link
Owner Author

@jarun jarun commented on 3785a66 Apr 14, 2019

Choose a reason for hiding this comment

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

Thank you! Yes, it's 64-bit only.

Please sign in to comment.