Skip to content

Commit bd64a6c

Browse files
committed
Release v2.14.1.6
The following are the changes in this release: Fixed version numbers in two cases in CHANGES that referred to the 2.14.2.x instead of 2.14.1.x. Rename MINGW Makefile variable (a holdover from MINGW32_NT-5.0) to OSNAME. Fixed FUNCPTR typedef in hist.c to fix deprecated compiler warnings. Fixed when USE_READLINE, READLINE_LIB, READLINE_EXTRAS, and READLINE_INCLUDE are set to empty (disable use of the GNU-readline facility). Fix cases of spaces before tabs in Makefile and Makefile.simple. Fixed obsolete references to the atoz() in LIBRARY to use the correct internal function name of str2z(). Fixed obsolete references to the atoq() in LIBRARY to use the correct internal function name of str2q(). Document in help/unexpected that * operator has has a higher precedence than << in calc, which differs from C. Thanks goes to GitHub user @inguin for pointing put this difference.
1 parent e2b2976 commit bd64a6c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Makefile

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

13821382
# The default calc versions
13831383
#
1384-
VERSION= 2.14.1.5
1384+
VERSION= 2.14.1.6
13851385

13861386
# Names of shared libraries with versions
13871387
#

Makefile.simple

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

12401240
# The default calc versions
12411241
#
1242-
VERSION= 2.14.1.5
1242+
VERSION= 2.14.1.6
12431243

12441244
# Names of shared libraries with versions
12451245
#

custom/Makefile

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

476476
# The default calc versions
477477
#
478-
VERSION= 2.14.1.5
478+
VERSION= 2.14.1.6
479479

480480
# Names of shared libraries with versions
481481
#

custom/Makefile.simple

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

446446
# The default calc versions
447447
#
448-
VERSION= 2.14.1.5
448+
VERSION= 2.14.1.6
449449

450450
# Names of shared libraries with versions
451451
#

version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ static char *program;
8484
#define MAJOR_VER 2 /* major library version */
8585
#define MINOR_VER 14 /* minor library version */
8686
#define MAJOR_PATCH 1 /* major software version level */
87-
#define MINOR_PATCH 5 /* minor software version level */
87+
#define MINOR_PATCH 6 /* minor software version level */
8888

8989

9090
/*

0 commit comments

Comments
 (0)