diff --git a/CHANGES b/CHANGES index 6724767..2abad25 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,13 @@ -The following are the changes from calc version 2.14.0.15 to date: +The following are the changes from calc version 2.14.1.0 to date: + + Fixed alignment of show item section of help command. + + Bug fix: While 0^0 == 1, now for y > 0, 0^y == 0. + Adjusted cal/test8900.cal to reflect this bug fix. + Added tests to cal/regress.cal to help verify bug fix is fixed. + + +The following are the changes from calc version 2.14.0.15 to 2.14.0.15: Changed Makefile to set shell before setting the SHELL Makefile variable. @@ -23,6 +32,8 @@ The following are the changes from calc version 2.14.0.15 to date: Added .PHONY rule, just after all rule, to Makefiles. + Made minor format update on help/commands. + Added ${WINGM} Makefile variable for users under Windows 11 who use Cygwin and the MinGW64 packages. diff --git a/Makefile b/Makefile index 1e94b0e..1b31896 100644 --- a/Makefile +++ b/Makefile @@ -1309,7 +1309,7 @@ EXT= # The default calc versions # -VERSION= 2.14.0.14 +VERSION= 2.14.1.0 # Names of shared libraries with versions # diff --git a/Makefile.simple b/Makefile.simple index 0484b1f..ae47b46 100644 --- a/Makefile.simple +++ b/Makefile.simple @@ -1151,7 +1151,7 @@ EXT= # The default calc versions # -VERSION= 2.14.0.14 +VERSION= 2.14.1.0 # Names of shared libraries with versions # diff --git a/custom/Makefile b/custom/Makefile index c979360..003b9c2 100644 --- a/custom/Makefile +++ b/custom/Makefile @@ -474,7 +474,7 @@ EXT= # The default calc versions # -VERSION= 2.14.0.14 +VERSION= 2.14.1.0 # Names of shared libraries with versions # diff --git a/custom/Makefile.simple b/custom/Makefile.simple index 8b1fa5d..c85591d 100644 --- a/custom/Makefile.simple +++ b/custom/Makefile.simple @@ -445,7 +445,7 @@ EXT= # The default calc versions # -VERSION= 2.14.0.14 +VERSION= 2.14.1.0 # Names of shared libraries with versions # diff --git a/version.c b/version.c index 074eb50..20525d4 100644 --- a/version.c +++ b/version.c @@ -53,8 +53,8 @@ static char *program; #define MAJOR_VER 2 /* major library version */ #define MINOR_VER 14 /* minor library version */ -#define MAJOR_PATCH 0 /* major software version level */ -#define MINOR_PATCH 14 /* minor software version level */ +#define MAJOR_PATCH 1 /* major software version level */ +#define MINOR_PATCH 0 /* minor software version level */ /*