Skip to content

Commit e0cd9bb

Browse files
committed
Release v2.14.0.6
The following are the changes in this release: Fixed typo in cal/statistics.cal thanks to a report by <GitHub user dennisaldea>. Fixed an old Windoz pun in README.WINDOWS as requested by <GitHub user marcodegio>. Fixed a really obscure bug in the internal initconstants() function of const.c that has been sitting for over 31 years! We are amazed that nobody has encountered this bug before now. Nevertheless, our very extensive regression and multi-architecture testing found the bug. Now, after all those years, it is fixed. Fixed issues identied by the default CodeUL GitHub security code scan: Wrong type of arguments to printf in have_fpos_pos.c Multiplication result converted to larger type in zfunc.c
1 parent f0f6171 commit e0cd9bb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile.ship

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ EXT=
12051205

12061206
# The default calc versions
12071207
#
1208-
VERSION= 2.14.0.4
1208+
VERSION= 2.14.0.6
12091209

12101210
# Names of shared libraries with versions
12111211
#

custom/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ EXT=
496496

497497
# The default calc versions
498498
#
499-
VERSION= 2.14.0.4
499+
VERSION= 2.14.0.6
500500

501501
# Names of shared libraries with versions
502502
#

custom/Makefile.head

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ EXT=
496496

497497
# The default calc versions
498498
#
499-
VERSION= 2.14.0.4
499+
VERSION= 2.14.0.6
500500

501501
# Names of shared libraries with versions
502502
#

version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static char *program;
5454
#define MAJOR_VER 2 /* major library version */
5555
#define MINOR_VER 14 /* minor library version */
5656
#define MAJOR_PATCH 0 /* major software version level */
57-
#define MINOR_PATCH 5 /* minor software version level */
57+
#define MINOR_PATCH 6 /* minor software version level */
5858

5959

6060
/*

0 commit comments

Comments
 (0)