Skip to content

Commit

Permalink
Increment the version and update the NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavin Howard committed Mar 4, 2021
1 parent 424bd21 commit c491550
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#
.POSIX:

VERSION = 3.3.2
VERSION = 3.3.3

SRC = %%SRC%%
OBJ = %%OBJ%%
Expand Down
15 changes: 15 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# News

## 3.3.3

This is a production release with one tweak and fixes for manuals.

The tweak is that `length(0)` returns `1` instead of `0`. In `3.3.1`, I changed
it so `length(0.x)`, where `x` could be any number of digits, returned the
`scale`, but `length(0)` still returned `0` because I believe that `0` has `0`
significant digits.

After request of FreeBSD and considering the arguments of a mathematician,
compatibility with other `bc`'s, and the expectations of users, I decided to
make the change.

The fixes for manuals fixed a bug where `--` was rendered as `-`.

## 3.3.2

This is a production release that fixes a divide-by-zero bug in `root()` in the
Expand Down

0 comments on commit c491550

Please sign in to comment.