Skip to content

Commit b7dc9ab

Browse files
committed
Release v2.16.1.0
The following are the changes in this release: Added a new `.clang-format` file as the basis for using the `clang-format(1)` tool to format calc source in a consistent way. This code re-formatting will make it easier to work in calc v3 code changes in the future by making the calc source much more consistent. Removed `.clang-format` exclusion from `.gitignore`. Modified `func.c` to prevent the `clang-format(1)` tool from formatting the `builtins[]` table that builtin make rule in `help/Makefile` uses to format the `help/builtin` file. We can live with the `builtins[]` table as it is today, for now. Add `make clang-format` make rule to top level `Makefile` and to the `custom/Makefile`. Reformatted C code as per the `clang-format(1)` and the `.clang-format` file: using the `make clang-format` make rule.
1 parent f125e6d commit b7dc9ab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,11 +1245,11 @@ EXT=
12451245

12461246
# The calc version in the form of x.y.z.w
12471247
#
1248-
VERSION= 2.16.0.3
1248+
VERSION= 2.16.1.0
12491249

12501250
# The calc major version in the form of x.y.z
12511251
#
1252-
VER= 2.16.0
1252+
VER= 2.16.1
12531253

12541254
# Names of shared libraries with versions
12551255
#

version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
*/
6262
# define MAJOR_VER 2 /* level 1: major library version */
6363
# define MINOR_VER 16 /* level 2: minor library version */
64-
# define MAJOR_PATCH 0 /* level 3: major software version level */
65-
# define MINOR_PATCH 3 /* level 4: minor software version level */
64+
# define MAJOR_PATCH 1 /* level 3: major software version level */
65+
# define MINOR_PATCH 0 /* level 4: minor software version level */
6666

6767
/*
6868
* Defining PERMIT_DANGEROUS_ADDRESS_ARITHMETIC is NOT supported!

0 commit comments

Comments
 (0)