Skip to content

Commit

Permalink
Prepare v1.09 release
Browse files Browse the repository at this point in the history
  • Loading branch information
grahambell committed Jan 30, 2021
1 parent 5e1553a commit 24e64fb
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 48 deletions.
1 change: 1 addition & 0 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ my $class = Module::Build->subclass(code => << 'EOF');
my $self = shift;
my %exclude = map {$_ => 1} qw[
erfasrc/src/t_erfa_c.c
erfasrc/src/t_erfa_c_extra.c
erfasrc/src/erfaversion.c
palsrc/palVers.c
palsrc/palTest.c
Expand Down
52 changes: 52 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
Revision history for Astro::PAL

1.09 2021-01-29

- Update PAL to v0.9.10 and ERFA to v1.7.1

1.08 2019-07-30

- Update PAL to v0.9.9 and ERFA to v1.5.0

- Add support for palAltaz, palDcmpf, palEcleq, palFitxy, palInvf,
palPcd, palPolmo, palPxy, palUnpcd and palXy2xy.

1.07 2014-08-01

- Fix build dependencies

1.06 2014-07-30

- Update PAL to v0.5.0

- Now ships with ERFA v1.1.0 instead of SOFA, clarifying license anomalies.

- Add support for palOap, palOapqk, palRefco, palRefcoq, palRefro,
palRefv, palRefz, palAop, palAoppa, palAoppat, palAopqk, palAtmdsp

1.05 2012-06-24

- Update PAL to v0.1.4. Use a private isblank() function and do
not attempt to use modern POSIX compiler settings.

1.04 2012-06-22

- Update PAL to v0.1.3. Use __STDC_VERSION__ test before using
copysign().

1.03 2012-06-22

- Update PAL to v0.1.2. Avoid using the C99 copysign() function
on Solaris.

1.02 2012-05-28

- Fix floating point comparisons in sun67.t

1.01 2012-05-27

- Fix MANIFEST of distribution to include PAL and SOFA source code.

1.00 2012-05-25

- Initial release
43 changes: 25 additions & 18 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
README
Build.PL
MANIFEST
lib/Astro/PAL.pm
lib/Astro/PAL.xs
src/arrays.c
src/arrays.h
typemap
t/fk4to5.t
t/palObs.t
t/mjd.t
t/preces.t
t/comet.t
t/sun67.t
t/paltest.t
stime
Changes
erfasrc/src/a2af.c
erfasrc/src/a2tf.c
erfasrc/src/ab.c
Expand Down Expand Up @@ -92,6 +78,8 @@ erfasrc/src/eqec06.c
erfasrc/src/eqeq94.c
erfasrc/src/era00.c
erfasrc/src/erfa.h
erfasrc/src/erfadatextra.c
erfasrc/src/erfadatextra.h
erfasrc/src/erfaextra.h
erfasrc/src/erfam.h
erfasrc/src/erfaversion.c
Expand All @@ -109,7 +97,11 @@ erfasrc/src/fapa03.c
erfasrc/src/fasa03.c
erfasrc/src/faur03.c
erfasrc/src/fave03.c
erfasrc/src/fk425.c
erfasrc/src/fk45z.c
erfasrc/src/fk524.c
erfasrc/src/fk52h.c
erfasrc/src/fk54z.c
erfasrc/src/fk5hip.c
erfasrc/src/fk5hz.c
erfasrc/src/fw2m.c
Expand Down Expand Up @@ -258,6 +250,11 @@ erfasrc/src/xys06a.c
erfasrc/src/zp.c
erfasrc/src/zpv.c
erfasrc/src/zr.c
lib/Astro/PAL.pm
lib/Astro/PAL.xs
MANIFEST
META.json
META.yml
palsrc/pal.h
palsrc/pal1.h
palsrc/pal1Atms.c
Expand Down Expand Up @@ -309,6 +306,7 @@ palsrc/palGe50.c
palsrc/palGeoc.c
palsrc/palIntin.c
palsrc/palInvf.c
palsrc/palmac.h
palsrc/palMap.c
palsrc/palMappa.c
palsrc/palMapqk.c
Expand Down Expand Up @@ -355,6 +353,15 @@ palsrc/palUe2pv.c
palsrc/palUnpcd.c
palsrc/palVers.c
palsrc/palXy2xy.c
palsrc/palmac.h
META.yml
META.json
README
src/arrays.c
src/arrays.h
stime
t/comet.t
t/fk4to5.t
t/mjd.t
t/palObs.t
t/paltest.t
t/preces.t
t/sun67.t
typemap
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
\.o$
^erfasrc\/(?!src)
^erfasrc\/src\/t_erfa_c\.c
^erfasrc\/src\/t_erfa_c_extra\.c
^erfasrc\/src\/Makefile\.am
^palsrc\/(?!(.*\.c|.*\.h))
^palsrc\/palTest.c
29 changes: 0 additions & 29 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -70,32 +70,3 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place,Suite 330, Boston, MA 02111-1307, USA

The array handling code was written by Karl Glazebrook.

Version History
---------------

1.00 Initial release

1.01 Fix MANIFEST of distribution to include PAL and SOFA source code.

1.02 Fix floating point comparisons in sun67.t

1.03 Update PAL to v0.1.2. Avoid using the C99 copysign() function
on Solaris.

1.04 Update PAL to v0.1.3. Use __STDC_VERSION__ test before using
copysign().

1.05 Update PAL to v0.1.4. Use a private isblank() function and do
not attempt to use modern POSIX compiler settings.

1.06 Update PAL to v0.5.0
- Now ships with ERFA v1.1.0 instead of SOFA, clarifying license anomalies.
Add support for palOap, palOapqk, palRefco, palRefcoq, palRefro,
palRefv, palRefz, palAop, palAoppa, palAoppat, palAopqk, palAtmdsp

1.07 Fix build dependencies

1.08 Update PAL to v0.9.9 and ERFA to v1.5.0
Add support for palAltaz, palDcmpf, palEcleq, palFitxy, palInvf,
palPcd, palPolmo, palPxy, palUnpcd and palXy2xy.
2 changes: 1 addition & 1 deletion lib/Astro/PAL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ use vars qw($VERSION %EXPORT_TAGS);
use Exporter 'import';
use base qw/ DynaLoader /;

$VERSION = '1.08';
$VERSION = '1.09';

%EXPORT_TAGS = (
'pal'=>[qw/
Expand Down

0 comments on commit 24e64fb

Please sign in to comment.