From ee26a57960c2accef49e170507da8a38224bf087 Mon Sep 17 00:00:00 2001 From: Carsten Larsen Date: Mon, 11 Jan 2021 21:10:34 +0100 Subject: [PATCH] Release 1.9.0 --- HISTORY | 5 ++++- amath.1 | 2 +- amath.doxygen | 2 +- builddeb | 2 +- builddebdev | 2 +- buildsrc | 10 +++++----- buildwin | 8 ++++---- configure | 2 +- src/amath.h | 6 +++--- src/clib/amathc.3 | 2 +- src/clib/amathc.dox | 4 ++-- src/clib/amathc.pc | 2 +- src/cplex/amathi.3 | 2 +- src/cplex/amathi.dox | 4 ++-- src/cplex/amathi.pc | 2 +- src/lib/amatha.pc | 2 +- src/main.h | 3 +++ src/real/amathr.3 | 2 +- src/real/amathr.dox | 4 ++-- src/real/amathr.pc | 2 +- 20 files changed, 37 insertions(+), 31 deletions(-) diff --git a/HISTORY b/HISTORY index 4ab9ade8..f8b0e0d6 100644 --- a/HISTORY +++ b/HISTORY @@ -1,5 +1,8 @@ amath release history +v1.9.0 January 11 2021 +- AmigaOS ARexx interface. + v1.8.5 August 07 2018 - Fix build on compilers with broken endian detection. @@ -108,7 +111,7 @@ v1.5.3 October 26 2014 v1.5.2 October 11 2014 - Modified character handling code to comply with licenses. - Modified complex math code to comply with licenses. -- Modified code base to work with Kickstart 2.04. +- Modified code base to work with Kickstart 2.04. - Square root of negative numbers now yields correct result. - Implemented scientific notation of numbers. - Infinity is now shown in division with 0. diff --git a/amath.1 b/amath.1 index 02f09785..56d463a1 100644 --- a/amath.1 +++ b/amath.1 @@ -20,7 +20,7 @@ .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -.TH amath 1 "Version 1.8.5" "August 07 2018" +.TH amath 1 "Version 1.9.0" "January 11 2021" .SH NAME amath \- Simple command line calculator .SH SYNOPSIS diff --git a/amath.doxygen b/amath.doxygen index dbbc0146..2ae86490 100644 --- a/amath.doxygen +++ b/amath.doxygen @@ -1,7 +1,7 @@ DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "amath" -PROJECT_NUMBER = "1.8.5" +PROJECT_NUMBER = "1.9.0" PROJECT_BRIEF = "Simple command line calculator" PROJECT_LOGO = OUTPUT_DIRECTORY = ../amath-doc diff --git a/builddeb b/builddeb index 20f095f2..65d9119f 100755 --- a/builddeb +++ b/builddeb @@ -30,7 +30,7 @@ set -e -version="1.8.5" +version="1.9.0" build_package () { diff --git a/builddebdev b/builddebdev index 9401d6b5..7dc96c08 100755 --- a/builddebdev +++ b/builddebdev @@ -32,7 +32,7 @@ set -e -version="1.8.5" +version="1.9.0" build_package () { diff --git a/buildsrc b/buildsrc index cb96a1f9..72e13557 100755 --- a/buildsrc +++ b/buildsrc @@ -1,15 +1,15 @@ #!/bin/sh -# +# # This file is public domain -# +# # Project homepage: # https://amath.innolan.net -# +# # DO NOT USE THIS SCRIPT UNLESS YOU KNOW WHAT YOU ARE DOING ! -version='1.8.5' -stamp="201808070000" +version='1.9.0' +stamp="202101110000" srcdir="amath-rc" distdir="amath-${version}" cd .. diff --git a/buildwin b/buildwin index 1f974d30..b1c53b63 100755 --- a/buildwin +++ b/buildwin @@ -1,14 +1,14 @@ #!/bin/sh -# +# # This file is public domain -# +# # Project homepage: # https://amath.innolan.net -# +# set -e -version="1.8.5" +version="1.9.0" echo "Building amath ${version} for Windows ..." diff --git a/configure b/configure index 57abce6a..fbaa55ce 100755 --- a/configure +++ b/configure @@ -27,7 +27,7 @@ set -e -version="1.8.5" +version="1.9.0" clang=false debugsym=false diff --git a/src/amath.h b/src/amath.h index 13bd5eb8..35af0afc 100644 --- a/src/amath.h +++ b/src/amath.h @@ -333,9 +333,9 @@ typedef int bool; #endif /******************************************************************************/ #define TXTARCH TXTCPU TXTFPU -#define RELDATESTAMP "(07-08-2018)" -#define TXTDOSVERSION "\0$VER: amath 1.85" SPACE RELDATESTAMP SPACE TXTARCH -#define TXTTITLE "amath version 1.8.5" +#define RELDATESTAMP "(11-01-2021)" +#define TXTDOSVERSION "\0$VER: amath 1.90" SPACE RELDATESTAMP SPACE TXTARCH +#define TXTTITLE "amath version 1.9.0" #define TXTCOPYRIGHT "(c) 2018 Carsten Sonne Larsen" #define TXTSTARTMSG TXTTITLE SPACE TXTCOPYRIGHT /******************************************************************************/ diff --git a/src/clib/amathc.3 b/src/clib/amathc.3 index c422495c..de9cfc76 100644 --- a/src/clib/amathc.3 +++ b/src/clib/amathc.3 @@ -20,7 +20,7 @@ .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -.TH "amathc.h" 3 "Version 1.8.5" "August 07 2018" +.TH "amathc.h" 3 "Version 1.9.0" "January 11 2021" .SH NAME amathc.h \- C functions for manipulating strings and memory .SH SYNOPSIS diff --git a/src/clib/amathc.dox b/src/clib/amathc.dox index c2d7e7c7..8dc88d4c 100644 --- a/src/clib/amathc.dox +++ b/src/clib/amathc.dox @@ -1,10 +1,10 @@ DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "amathc" -PROJECT_NUMBER = "1.8.5" +PROJECT_NUMBER = "1.9.0" PROJECT_BRIEF = "C functions for manipulating strings and memory" PROJECT_LOGO = -OUTPUT_DIRECTORY = +OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO ALLOW_UNICODE_NAMES = NO OUTPUT_LANGUAGE = English diff --git a/src/clib/amathc.pc b/src/clib/amathc.pc index 2165b15b..50591e9a 100644 --- a/src/clib/amathc.pc +++ b/src/clib/amathc.pc @@ -5,6 +5,6 @@ libdir=${exec_prefix}/lib Name: amath C library Description: C functions for manipulating strings and memory -Version: 1.8.5 +Version: 1.9.0 Cflags: -I${includedir} Libs: -L${libdir} -lamathc diff --git a/src/cplex/amathi.3 b/src/cplex/amathi.3 index 44eef689..cd8b626c 100644 --- a/src/cplex/amathi.3 +++ b/src/cplex/amathi.3 @@ -20,7 +20,7 @@ .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -.TH "mathi.h" 3 "Version 1.8.5" "August 07 2018" +.TH "mathi.h" 3 "Version 1.9.0" "January 11 2021" .SH NAME mathi.h \- Complex numbers math library .SH SYNOPSIS diff --git a/src/cplex/amathi.dox b/src/cplex/amathi.dox index 97f3f930..5117a747 100644 --- a/src/cplex/amathi.dox +++ b/src/cplex/amathi.dox @@ -1,10 +1,10 @@ DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "amathi" -PROJECT_NUMBER = "1.8.5" +PROJECT_NUMBER = "1.9.0" PROJECT_BRIEF = "Complex numbers math library" PROJECT_LOGO = -OUTPUT_DIRECTORY = +OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO ALLOW_UNICODE_NAMES = NO OUTPUT_LANGUAGE = English diff --git a/src/cplex/amathi.pc b/src/cplex/amathi.pc index 1d678539..4fe40257 100644 --- a/src/cplex/amathi.pc +++ b/src/cplex/amathi.pc @@ -5,6 +5,6 @@ libdir=${exec_prefix}/lib Name: amath complex library Description: Complex numbers math library -Version: 1.8.5 +Version: 1.9.0 Cflags: -I${includedir} Libs: -L${libdir} -lamathi diff --git a/src/lib/amatha.pc b/src/lib/amatha.pc index bbf56c4a..19f30712 100644 --- a/src/lib/amatha.pc +++ b/src/lib/amatha.pc @@ -5,6 +5,6 @@ libdir=${exec_prefix}/lib Name: amath application library Description: C++ library for handling numbers -Version: 1.8.5 +Version: 1.9.0 Cflags: -I${includedir} Libs: -L${libdir} -lamathapp -lamathr -lamathi -lamathc diff --git a/src/main.h b/src/main.h index 580cc3ff..83a2dc02 100644 --- a/src/main.h +++ b/src/main.h @@ -261,6 +261,9 @@ \page release_page Release history \section release_sec Release history + \subsection version185 1.9.0 January 11 2021 + - AmigaOS ARexx interface. + \subsection version185 1.8.5 August 07 2018 - Fix build on compilers with broken endian detection. diff --git a/src/real/amathr.3 b/src/real/amathr.3 index f6be9615..d3b3278f 100644 --- a/src/real/amathr.3 +++ b/src/real/amathr.3 @@ -20,7 +20,7 @@ .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -.TH "mathr.h" 3 "Version 1.8.5" "August 07 2018" +.TH "mathr.h" 3 "Version 1.9.0" "January 11 2021" .SH NAME mathr.h \- Real numbers math library .SH SYNOPSIS diff --git a/src/real/amathr.dox b/src/real/amathr.dox index e287d63a..89c85b85 100644 --- a/src/real/amathr.dox +++ b/src/real/amathr.dox @@ -1,10 +1,10 @@ DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "amathr" -PROJECT_NUMBER = "1.8.5" +PROJECT_NUMBER = "1.9.0" PROJECT_BRIEF = "Real numbers math library" PROJECT_LOGO = -OUTPUT_DIRECTORY = +OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO ALLOW_UNICODE_NAMES = NO OUTPUT_LANGUAGE = English diff --git a/src/real/amathr.pc b/src/real/amathr.pc index 88373454..ad5d6280 100644 --- a/src/real/amathr.pc +++ b/src/real/amathr.pc @@ -5,6 +5,6 @@ libdir=${exec_prefix}/lib Name: amath real library Description: Real numbers math library -Version: 1.8.5 +Version: 1.9.0 Cflags: -I${includedir} Libs: -L${libdir} -lamathr