From 6cdea9706a914775b98554c929c4c9b456e12a18 Mon Sep 17 00:00:00 2001 From: Graham Bell Date: Mon, 17 Apr 2023 20:20:21 -1000 Subject: [PATCH] Update version number to 9.2.10 --- ast.news | 24 +++++++++++++++++++++++- component.xml | 2 +- configure.ac | 2 +- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/ast.news b/ast.news index 3e39c665..cb765a1c 100644 --- a/ast.news +++ b/ast.news @@ -1,6 +1,6 @@ AST Library ----------- - A new release (V9.2.8) of the Starlink AST (astrometry) library is + A new release (V9.2.10) of the Starlink AST (astrometry) library is now available. AST provides a comprehensive range of facilities for attaching @@ -17,6 +17,27 @@ environment-independent. Main Changes in this Version ---------------------------- +- A bug has been fixed in the astRebinSeq4 wrapper where lbnd and ubnd +had dimensions ndim_out rather than ndim_in. Additionally the dimension +check error message was corrected to refer to input dimensions. These +and other recent fixes to astRebinSeq were applied also to astRebin. + +- Some memory allocations in PolyMap were corrected. + + +Main Changes in V9.2.9 +---------------------- + +- Further changes were made to accomodate size_t string lengths in +gfortran V8. + +- FitsChan private function RoundFString was updated to avoid copying +overlapping input and output strings. + + +Main Changes in V9.2.8 +---------------------- + - The Fortran interface has been changed to fix a bug caused by a change in the way that gfortran passes character arguments. As of gfortran V8 the length of each character argument passed to a subroutine is stored in a @@ -33,6 +54,7 @@ weight per input pixel is calculated. It may cause some general minor changes to the decision about which output pixels pass the "wlim" criterion. + Main Changes in V9.2.7 ---------------------- diff --git a/component.xml b/component.xml index 638869e0..8186c627 100644 --- a/component.xml +++ b/component.xml @@ -2,7 +2,7 @@ - 9.2.9 + 9.2.10 libext/ast WCS library diff --git a/configure.ac b/configure.ac index b73a82cd..99ecd883 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ dnl automake 1.6 or better. dnl Initialisation: package name and version number m4_define([v_maj], [9]) m4_define([v_min], [2]) -m4_define([v_mic], [9]) +m4_define([v_mic], [10]) m4_define([project_version], [v_maj.v_min.v_mic]) AC_INIT([ast],[project_version],[starlink@jiscmail.ac.uk]) AC_CONFIG_AUX_DIR([build-aux])